Sun, 01 Oct 2023 14:25:26 +0200
improve Makefiles
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 | OBJ = $(SRC:%.c=$(BUILD_DIR)/%.o) |
73 | 29 | CFLAGS += -DVERSION='"$(VERSION)"' |
68
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..." |
73 | 40 | $(CC) $(LDFLAGS) -o $@ $^ |
68
ae763178ee1e
replace autoconf with uwproj
Mike Becker <universe@uap-core.de>
parents:
61
diff
changeset
|
41 | |
69 | 42 | FORCE: |
73 | 43 | |
44 | $(BUILD_DIR)/arguments.o: arguments.c arguments.h stdinc.h string_list.h | |
45 | echo "Compiling $<" | |
46 | $(CC) -o $@ $(CFLAGS) -c $< | |
47 | ||
48 | $(BUILD_DIR)/bfile_heuristics.o: bfile_heuristics.c bfile_heuristics.h \ | |
49 | stdinc.h | |
50 | echo "Compiling $<" | |
51 | $(CC) -o $@ $(CFLAGS) -c $< | |
52 | ||
53 | $(BUILD_DIR)/cline.o: cline.c cline.h stdinc.h settings.h string_list.h \ | |
54 | bfile_heuristics.h regex_parser.h scanner.h arguments.h | |
55 | echo "Compiling $<" | |
56 | $(CC) -o $@ $(CFLAGS) -c $< | |
57 | ||
58 | $(BUILD_DIR)/regex_parser.o: regex_parser.c regex_parser.h string_list.h \ | |
59 | stdinc.h | |
60 | echo "Compiling $<" | |
61 | $(CC) -o $@ $(CFLAGS) -c $< | |
62 | ||
63 | $(BUILD_DIR)/scanner.o: scanner.c scanner.h stdinc.h settings.h \ | |
64 | string_list.h bfile_heuristics.h regex_parser.h | |
65 | echo "Compiling $<" | |
66 | $(CC) -o $@ $(CFLAGS) -c $< | |
67 | ||
68 | $(BUILD_DIR)/settings.o: settings.c settings.h stdinc.h string_list.h \ | |
69 | bfile_heuristics.h regex_parser.h | |
70 | echo "Compiling $<" | |
71 | $(CC) -o $@ $(CFLAGS) -c $< | |
72 | ||
73 | $(BUILD_DIR)/string_list.o: string_list.c string_list.h stdinc.h | |
74 | echo "Compiling $<" | |
75 | $(CC) -o $@ $(CFLAGS) -c $< | |
76 |