]> git.ozlabs.org Git - ccan/blob - Makefile-ccan
lstack: Linked list stack implementation
[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         err \
53         failtest \
54         foreach \
55         grab_file \
56         hash \
57         heap \
58         htable \
59         idtree \
60         ilog \
61         io \
62         isaac \
63         iscsi \
64         jacobson_karels \
65         jmap \
66         json \
67         jset \
68         lbalance \
69         likely \
70         list \
71         lqueue \
72         lstack \
73         md4 \
74         memmem \
75         net \
76         nfs \
77         noerr \
78         ogg_to_pcm \
79         opt \
80         ptr_valid \
81         rbtree \
82         rbuf \
83         read_write_all \
84         rfc822 \
85         siphash \
86         sparse_bsearch \
87         str \
88         stringmap \
89         strmap \
90         strset \
91         take \
92         tal \
93         tal/grab_file \
94         tal/link \
95         tal/path \
96         tal/str \
97         tal/talloc \
98         talloc \
99         tally \
100         tap \
101         time \
102         timer \
103         ttxml \
104         wwviaudio
105
106 MODS:=$(MODS_WITH_SRC) $(MODS_NO_SRC)
107
108 default: libccan.a
109
110 # Automatic dependency generation: makes ccan/*/*.d files.
111 DEPGEN=-MD
112 -include ccan/*/*.d
113
114 # Anything with C files needs building; dir leaves / on, sort uniquifies
115 DIRS=$(patsubst %/, %, $(sort $(foreach m, $(filter-out $(MODS_EXCLUDE), $(MODS_WITH_SRC)), $(dir $(wildcard ccan/$m/*.c)))))
116
117 # Generate everyone's separate Makefiles.
118 -include $(foreach dir, $(DIRS), $(dir)-Makefile)
119
120 ccan/%-Makefile:
121         @echo $@: $(wildcard ccan/$*/*.[ch]) ccan/$*/_info > $@
122         @echo ccan/$*.o: $(patsubst %.c, %.o, $(wildcard ccan/$*/*.c)) >> $@
123
124 # We compile all the ccan/foo/*.o files together into ccan/foo.o
125 OBJFILES=$(DIRS:=.o)
126
127 # We create all the .o files and link them together.
128 $(OBJFILES): %.o:
129         $(LD) -r -o $@ $^
130
131 libccan.a: $(OBJFILES)
132         $(AR) r $@ $(OBJFILES)