]> git.ozlabs.org Git - ccan/blob - Makefile-ccan
Makefile-ccan: bytestring now has source.
[ccan] / Makefile-ccan
1 # Example makefile which makes a "libccan.a" of everything under ccan/.
2 # For simple projects you could just do:
3 #       SRCFILES += $(wildcard ccan/*/*.c)
4
5 #CCAN_CFLAGS=-g -O3 -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wwrite-strings -Wundef -DCCAN_STR_DEBUG=1
6 CCAN_CFLAGS=-g3 -ggdb -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wwrite-strings -Wundef -DCCAN_STR_DEBUG=1
7 CFLAGS = $(CCAN_CFLAGS) -I. $(DEPGEN)
8
9 # Modules which are just a header:
10 MODS_NO_SRC := alignof \
11         argcheck \
12         array_size \
13         asearch \
14         bitmap \
15         build_assert \
16         cast \
17         check_type \
18         compiler \
19         container_of \
20         darray \
21         endian \
22         minmax \
23         objset \
24         short_types \
25         structeq \
26         tcon \
27         tlist \
28         typesafe_cb \
29         version
30
31 # No external dependencies, with C code:
32 MODS_WITH_SRC := antithread \
33         antithread/alloc \
34         asort \
35         asprintf \
36         autodata \
37         avl \
38         bdelta \
39         block_pool \
40         breakpoint \
41         btree \
42         bytestring \
43         ccan_tokenizer \
44         charset \
45         ciniparser \
46         crc \
47         crcsync \
48         cpuid \
49         daemonize \
50         daemon_with_notify \
51         dgraph \
52         eratosthenes \
53         err \
54         failtest \
55         foreach \
56         grab_file \
57         hash \
58         heap \
59         htable \
60         idtree \
61         ilog \
62         io \
63         isaac \
64         iscsi \
65         jacobson_karels \
66         jmap \
67         json \
68         jset \
69         lbalance \
70         likely \
71         list \
72         lqueue \
73         lstack \
74         md4 \
75         mem \
76         net \
77         nfs \
78         noerr \
79         ogg_to_pcm \
80         opt \
81         ptr_valid \
82         rbtree \
83         rbuf \
84         read_write_all \
85         rfc822 \
86         siphash \
87         sparse_bsearch \
88         str \
89         stringmap \
90         strmap \
91         strset \
92         take \
93         tal \
94         tal/grab_file \
95         tal/link \
96         tal/path \
97         tal/str \
98         tal/talloc \
99         talloc \
100         tally \
101         tap \
102         time \
103         timer \
104         ttxml \
105         wwviaudio
106
107 MODS:=$(MODS_WITH_SRC) $(MODS_NO_SRC)
108
109 default: libccan.a
110
111 # Automatic dependency generation: makes ccan/*/*.d files.
112 DEPGEN=-MD
113 -include ccan/*/*.d
114
115 # Anything with C files needs building; dir leaves / on, sort uniquifies
116 DIRS=$(patsubst %/, %, $(sort $(foreach m, $(filter-out $(MODS_EXCLUDE), $(MODS_WITH_SRC)), $(dir $(wildcard ccan/$m/*.c)))))
117
118 # Generate everyone's separate Makefiles.
119 -include $(foreach dir, $(DIRS), $(dir)-Makefile)
120
121 ccan/%-Makefile:
122         @echo $@: $(wildcard ccan/$*/*.[ch]) ccan/$*/_info > $@
123         @echo ccan/$*.o: $(patsubst %.c, %.o, $(wildcard ccan/$*/*.c)) >> $@
124
125 # We compile all the ccan/foo/*.o files together into ccan/foo.o
126 OBJFILES=$(DIRS:=.o)
127
128 # We create all the .o files and link them together.
129 $(OBJFILES): %.o:
130         $(LD) -r -o $@ $^
131
132 libccan.a: $(OBJFILES)
133         $(AR) r $@ $(OBJFILES)