Fri, 01 Nov 2024 17:35:42 +0100
treat integers and doubles both as JSON numbers
relates to #431
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
1 | # Copyright 2023 Mike Becker. All rights reserved. |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
2 | # |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
3 | # Redistribution and use in source and binary forms, with or without |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
4 | # modification, are permitted provided that the following conditions are met: |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
5 | # |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
6 | # 1. Redistributions of source code must retain the above copyright |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
7 | # notice, this list of conditions and the following disclaimer. |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
8 | # |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
9 | # 2. Redistributions in binary form must reproduce the above copyright |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
10 | # notice, this list of conditions and the following disclaimer in the |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
11 | # documentation and/or other materials provided with the distribution. |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
12 | # |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
13 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
14 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
15 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
16 | # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
17 | # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
18 | # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
19 | # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
20 | # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
21 | # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
22 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
23 | |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
24 | include ../config.mk |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
25 | |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
26 | SRC = allocator.c array_list.c buffer.c compare.c hash_key.c hash_map.c \ |
850
b2bc48c2b251
add iterator over raw C arrays - closes #389
Mike Becker <universe@uap-core.de>
parents:
833
diff
changeset
|
27 | iterator.c linked_list.c list.c map.c mempool.c printf.c string.c tree.c \ |
937
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
28 | utils.c properties.c json.c |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
29 | |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
30 | OBJ_EXT=.o |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
31 | OBJ=$(SRC:%.c=$(build_dir)/%$(OBJ_EXT)) |
774
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
32 | GCOV=$(SRC:%.c=%.c.gcov) |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
33 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
34 | static: $(build_dir)/libucx_static$(STLIB_EXT) |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
35 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
36 | shared: $(build_dir)/libucx$(SHLIB_EXT) |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
37 | |
774
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
38 | check-coverage: $(GCOV) |
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
39 | mv *.gcov "$(build_dir)" |
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
40 | |
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
41 | %.c.gcov: %.c $(build_dir)/%.gcno |
922
eabfbe9e2952
also report coverage for header files
Mike Becker <universe@uap-core.de>
parents:
899
diff
changeset
|
42 | @tabs 22 |
eabfbe9e2952
also report coverage for header files
Mike Becker <universe@uap-core.de>
parents:
899
diff
changeset
|
43 | @gcov -Ho "$(build_dir)" $< | grep -A1 'File' | grep -v '\--' \ |
eabfbe9e2952
also report coverage for header files
Mike Becker <universe@uap-core.de>
parents:
899
diff
changeset
|
44 | | sed 's/File / /' | sed 's/Lines executed:/\t/' | tr -d '\n'"'" \ |
eabfbe9e2952
also report coverage for header files
Mike Becker <universe@uap-core.de>
parents:
899
diff
changeset
|
45 | | sed -E 's/(of [0-9]+)/\1\n/g' |
eabfbe9e2952
also report coverage for header files
Mike Becker <universe@uap-core.de>
parents:
899
diff
changeset
|
46 | @tabs -8 |
774
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
47 | |
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
48 | $(build_dir)/%.gcno: |
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
49 | test -f "$@" |
4fd4e0c6107a
add make target to automatically gather coverage info
Mike Becker <universe@uap-core.de>
parents:
766
diff
changeset
|
50 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
51 | $(build_dir)/libucx_static$(STLIB_EXT): $(OBJ) |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
52 | $(AR) $(ARFLAGS) $@ $^ |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
53 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
54 | $(build_dir)/libucx$(SHLIB_EXT): $(OBJ) |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
55 | $(CC) $(LDFLAGS) -o $@ $^ |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
56 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
57 | install: $(build_dir)/libucx_static$(STLIB_EXT) $(build_dir)/libucx$(SHLIB_EXT) |
765
b5128bb44459
fix usage of COPYALL in Makefiles
Mike Becker <universe@uap-core.de>
parents:
755
diff
changeset
|
58 | $(MKDIR) $(libdir) $(includedir)/cx |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
59 | $(RMFILE) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION_MAJOR) |
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
60 | $(RMFILE) $(libdir)/libucx$(SHLIB_EXT) |
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
61 | $(COPYFILE) $(build_dir)/libucx_static$(STLIB_EXT) $(libdir)/libucx_static$(STLIB_EXT) |
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
62 | $(COPYFILE) $(build_dir)/libucx$(SHLIB_EXT) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION) |
765
b5128bb44459
fix usage of COPYALL in Makefiles
Mike Becker <universe@uap-core.de>
parents:
755
diff
changeset
|
63 | $(COPYALL) $(src_dir)/src/cx $(includedir) |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
64 | $(SYMLINK) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION_MAJOR) |
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
65 | $(SYMLINK) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION_MAJOR) $(libdir)/libucx$(SHLIB_EXT) |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
66 | |
755 | 67 | FORCE: |
68 | ||
963
2f601274bbac
add reallocarray() like functions - resolves #468
Mike Becker <universe@uap-core.de>
parents:
962
diff
changeset
|
69 | $(build_dir)/allocator$(OBJ_EXT): allocator.c cx/allocator.h cx/common.h \ |
2f601274bbac
add reallocarray() like functions - resolves #468
Mike Becker <universe@uap-core.de>
parents:
962
diff
changeset
|
70 | cx/utils.h |
755 | 71 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
72 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
73 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
74 | $(build_dir)/array_list$(OBJ_EXT): array_list.c cx/array_list.h cx/list.h \ |
854
fe0d69d72bcd
fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents:
850
diff
changeset
|
75 | cx/common.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h \ |
fe0d69d72bcd
fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents:
850
diff
changeset
|
76 | cx/compare.h |
755 | 77 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
78 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
79 | |
755 | 80 | $(build_dir)/buffer$(OBJ_EXT): buffer.c cx/buffer.h cx/common.h \ |
81 | cx/allocator.h cx/utils.h | |
82 | @echo "Compiling $<" | |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
83 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
84 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
85 | $(build_dir)/compare$(OBJ_EXT): compare.c cx/compare.h cx/common.h |
755 | 86 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
87 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
88 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
89 | $(build_dir)/hash_key$(OBJ_EXT): hash_key.c cx/hash_key.h cx/common.h |
755 | 90 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
91 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
92 | |
755 | 93 | $(build_dir)/hash_map$(OBJ_EXT): hash_map.c cx/hash_map.h cx/map.h \ |
854
fe0d69d72bcd
fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents:
850
diff
changeset
|
94 | cx/common.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h \ |
962
cd418898af5c
remove cx_for_n() macro - fixes #467
Mike Becker <universe@uap-core.de>
parents:
958
diff
changeset
|
95 | cx/string.h cx/hash_key.h |
755 | 96 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
97 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
98 | |
850
b2bc48c2b251
add iterator over raw C arrays - closes #389
Mike Becker <universe@uap-core.de>
parents:
833
diff
changeset
|
99 | $(build_dir)/iterator$(OBJ_EXT): iterator.c cx/iterator.h cx/common.h |
b2bc48c2b251
add iterator over raw C arrays - closes #389
Mike Becker <universe@uap-core.de>
parents:
833
diff
changeset
|
100 | @echo "Compiling $<" |
b2bc48c2b251
add iterator over raw C arrays - closes #389
Mike Becker <universe@uap-core.de>
parents:
833
diff
changeset
|
101 | $(CC) -o $@ $(CFLAGS) -c $< |
b2bc48c2b251
add iterator over raw C arrays - closes #389
Mike Becker <universe@uap-core.de>
parents:
833
diff
changeset
|
102 | |
937
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
103 | $(build_dir)/json$(OBJ_EXT): json.c cx/json.h cx/common.h cx/string.h \ |
958
c9033d30a9f6
update build dependencies for json.c
Mike Becker <universe@uap-core.de>
parents:
937
diff
changeset
|
104 | cx/allocator.h cx/array_list.h cx/list.h cx/collection.h cx/iterator.h \ |
c9033d30a9f6
update build dependencies for json.c
Mike Becker <universe@uap-core.de>
parents:
937
diff
changeset
|
105 | cx/compare.h |
937
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
106 | @echo "Compiling $<" |
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
107 | $(CC) -o $@ $(CFLAGS) -c $< |
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
108 | |
755 | 109 | $(build_dir)/linked_list$(OBJ_EXT): linked_list.c cx/linked_list.h \ |
110 | cx/common.h cx/list.h cx/collection.h cx/allocator.h cx/iterator.h \ | |
962
cd418898af5c
remove cx_for_n() macro - fixes #467
Mike Becker <universe@uap-core.de>
parents:
958
diff
changeset
|
111 | cx/compare.h cx/compare.h |
755 | 112 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
113 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
114 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
115 | $(build_dir)/list$(OBJ_EXT): list.c cx/list.h cx/common.h cx/collection.h \ |
854
fe0d69d72bcd
fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents:
850
diff
changeset
|
116 | cx/allocator.h cx/iterator.h cx/compare.h |
755 | 117 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
118 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
119 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
120 | $(build_dir)/map$(OBJ_EXT): map.c cx/map.h cx/common.h cx/collection.h \ |
854
fe0d69d72bcd
fix members inherited by macro or include are not documented
Mike Becker <universe@uap-core.de>
parents:
850
diff
changeset
|
121 | cx/allocator.h cx/iterator.h cx/compare.h cx/string.h cx/hash_key.h |
755 | 122 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
123 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
124 | |
755 | 125 | $(build_dir)/mempool$(OBJ_EXT): mempool.c cx/mempool.h cx/common.h \ |
126 | cx/allocator.h cx/utils.h | |
127 | @echo "Compiling $<" | |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
128 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
129 | |
755 | 130 | $(build_dir)/printf$(OBJ_EXT): printf.c cx/printf.h cx/common.h \ |
131 | cx/string.h cx/allocator.h | |
132 | @echo "Compiling $<" | |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
133 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
134 | |
924
3c90dfc35f06
add implementation for the properties parser
Mike Becker <universe@uap-core.de>
parents:
923
diff
changeset
|
135 | $(build_dir)/properties$(OBJ_EXT): properties.c cx/properties.h \ |
937
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
136 | cx/common.h cx/string.h cx/allocator.h cx/map.h cx/collection.h \ |
10123f4d5618
add first draft of json implementation - relates to #431
Mike Becker <universe@uap-core.de>
parents:
924
diff
changeset
|
137 | cx/iterator.h cx/compare.h cx/hash_key.h cx/array_list.h cx/list.h |
923
45da884269c8
add ucx2.1 style interface for a properties parser
Mike Becker <universe@uap-core.de>
parents:
922
diff
changeset
|
138 | @echo "Compiling $<" |
45da884269c8
add ucx2.1 style interface for a properties parser
Mike Becker <universe@uap-core.de>
parents:
922
diff
changeset
|
139 | $(CC) -o $@ $(CFLAGS) -c $< |
45da884269c8
add ucx2.1 style interface for a properties parser
Mike Becker <universe@uap-core.de>
parents:
922
diff
changeset
|
140 | |
755 | 141 | $(build_dir)/string$(OBJ_EXT): string.c cx/string.h cx/common.h \ |
962
cd418898af5c
remove cx_for_n() macro - fixes #467
Mike Becker <universe@uap-core.de>
parents:
958
diff
changeset
|
142 | cx/allocator.h |
755 | 143 | @echo "Compiling $<" |
144 | $(CC) -o $@ $(CFLAGS) -c $< | |
145 | ||
146 | $(build_dir)/szmul$(OBJ_EXT): szmul.c | |
147 | @echo "Compiling $<" | |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
148 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
149 | |
899
303a981e6834
more prototypes for tree functions
Mike Becker <universe@uap-core.de>
parents:
854
diff
changeset
|
150 | $(build_dir)/tree$(OBJ_EXT): tree.c cx/tree.h cx/common.h cx/collection.h \ |
303a981e6834
more prototypes for tree functions
Mike Becker <universe@uap-core.de>
parents:
854
diff
changeset
|
151 | cx/allocator.h cx/iterator.h cx/compare.h cx/array_list.h cx/list.h |
816
425234b05dff
add first basic low level tree functions
Mike Becker <universe@uap-core.de>
parents:
794
diff
changeset
|
152 | @echo "Compiling $<" |
425234b05dff
add first basic low level tree functions
Mike Becker <universe@uap-core.de>
parents:
794
diff
changeset
|
153 | $(CC) -o $@ $(CFLAGS) -c $< |
425234b05dff
add first basic low level tree functions
Mike Becker <universe@uap-core.de>
parents:
794
diff
changeset
|
154 | |
754
4bc7d966c9db
add an uwproj based install target
Mike Becker <universe@uap-core.de>
parents:
753
diff
changeset
|
155 | $(build_dir)/utils$(OBJ_EXT): utils.c cx/utils.h cx/common.h |
755 | 156 | @echo "Compiling $<" |
753
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
157 | $(CC) -o $@ $(CFLAGS) -c $< |
24dc84788dee
replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
158 |