Fri, 29 Sep 2023 20:30:31 +0200
Added tag v1.4.1 for changeset a2ea57a16348
57
68018eac46c3
adds simple tiny test suite and updates license headers
Mike Becker <universe@uap-core.de>
parents:
51
diff
changeset
|
1 | # Copyright 2018 Mike Becker. All rights reserved. |
48
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
2 | # |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
3 | # Redistribution and use in source and binary forms, with or without |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
4 | # modification, are permitted provided that the following conditions are met: |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
5 | # |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
6 | # 1. Redistributions of source code must retain the above copyright |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
7 | # notice, this list of conditions and the following disclaimer. |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
8 | # |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
9 | # 2. Redistributions in binary form must reproduce the above copyright |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
10 | # notice, this list of conditions and the following disclaimer in the |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
11 | # documentation and/or other materials provided with the distribution. |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
12 | # |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
13 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
14 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
15 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
16 | # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
17 | # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
18 | # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
19 | # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
20 | # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
21 | # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
22 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
0d2c13c24fd0
adds remaining autoconf files
Mike Becker <universe@uap-core.de>
parents:
47
diff
changeset
|
23 | |
68
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
24 | include ../config.mk |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
25 | |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
26 | BUILD_DIR = ../build |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
27 | SRC = arguments.c bfile_heuristics.c cline.c regex_parser.c scanner.c settings.c string_list.c |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
28 | |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
29 | OBJ = $(SRC:%.c=$(BUILD_DIR)/%.o) |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
30 | |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
31 | all: $(BUILD_DIR)/cline FORCE |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
32 | echo "Build successful." |
47
e5455e692b45
replaces Makefiles with autoconf files
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
33 | |
68
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
34 | install: $(BUILD_DIR)/cline FORCE |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
35 | cd .. && cp "build/cline" "$(BINDIR)/cline" |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
36 | echo "Installed to: $(BINDIR)/cline" |
47
e5455e692b45
replaces Makefiles with autoconf files
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
37 | |
68
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
38 | $(BUILD_DIR)/cline: $(OBJ) |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
39 | echo "Linking executable..." |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
40 | $(CC) $(LDFLAGS) -o $@ $(OBJ) |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
41 | |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
42 | $(BUILD_DIR)/%.o: %.c |
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
43 | echo "Compiling $<" |
69 | 44 | $(CC) $(CFLAGS) -DVERSION='"$(VERSION)"' -c -o $@ $< |
68
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
45 | |
69 | 46 | FORCE: |