]> git.ozlabs.org Git - ccan/blob - Makefile-ccan
f97ff20d14750f4ac8487e98317bf3f2489300ce
[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         bytestring \
17         cast \
18         check_type \
19         compiler \
20         container_of \
21         darray \
22         endian \
23         minmax \
24         objset \
25         short_types \
26         structeq \
27         tcon \
28         tlist \
29         typesafe_cb \
30         version
31
32 # No external dependencies, with C code:
33 MODS_WITH_SRC := antithread \
34         antithread/alloc \
35         asort \
36         asprintf \
37         autodata \
38         avl \
39         bdelta \
40         block_pool \
41         breakpoint \
42         btree \
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         memmem \
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)