X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile-ccan;h=315962cf4c8ec7118d71d5fb87e994b3a3521609;hp=68f7d02dd291948232441ad3e29d4acfb2265fd2;hb=73930140fa25d3834570fcd906a01e199cfe17ac;hpb=9d724ba2aa3b69cc56d20e5f578b2c1399e965f6;ds=sidebyside diff --git a/Makefile-ccan b/Makefile-ccan index 68f7d02d..315962cf 100644 --- a/Makefile-ccan +++ b/Makefile-ccan @@ -1,23 +1,140 @@ # Example makefile which makes a "libccan.a" of everything under ccan/. # For simple projects you could just do: -# SRCFILES += $(wildcard ccan/*/[a-z]*.c) +# SRCFILES += $(wildcard ccan/*/*.c) -CFLAGS=-g -O3 -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -I. $(DEPGEN) +#CCAN_CFLAGS=-g -O3 -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wwrite-strings -Wundef -DCCAN_STR_DEBUG=1 +CCAN_CFLAGS=-g3 -ggdb -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wwrite-strings -Wundef -DCCAN_STR_DEBUG=1 +CFLAGS = $(CCAN_CFLAGS) -I. $(DEPGEN) -# Automatic dependency generation: makes ccan/*.d files. +# Modules which are just a header: +MODS_NO_SRC := alignof \ + argcheck \ + array_size \ + asearch \ + bitmap \ + build_assert \ + cast \ + check_type \ + compiler \ + container_of \ + darray \ + endian \ + minmax \ + objset \ + short_types \ + structeq \ + tcon \ + tlist \ + typesafe_cb \ + version + +# No external dependencies, with C code: +MODS_WITH_SRC := antithread \ + antithread/alloc \ + asort \ + asprintf \ + autodata \ + avl \ + base64 \ + bdelta \ + block_pool \ + breakpoint \ + btree \ + bytestring \ + ccan_tokenizer \ + cdump \ + charset \ + ciniparser \ + crc \ + crcsync \ + cpuid \ + daemonize \ + daemon_with_notify \ + dgraph \ + eratosthenes \ + err \ + failtest \ + foreach \ + grab_file \ + hash \ + heap \ + htable \ + idtree \ + ilog \ + invbloom \ + io \ + isaac \ + iscsi \ + jacobson_karels \ + jmap \ + json \ + jset \ + lbalance \ + likely \ + list \ + lqueue \ + lstack \ + md4 \ + mem \ + net \ + nfs \ + noerr \ + ntdb \ + ogg_to_pcm \ + opt \ + ptr_valid \ + pushpull \ + rbtree \ + rbuf \ + read_write_all \ + rfc822 \ + siphash \ + sparse_bsearch \ + str \ + stringbuilder \ + stringmap \ + strmap \ + strset \ + take \ + tal \ + tal/grab_file \ + tal/link \ + tal/path \ + tal/stack \ + tal/str \ + tal/talloc \ + talloc \ + tally \ + tap \ + time \ + timer \ + ttxml \ + wwviaudio + +MODS:=$(MODS_WITH_SRC) $(MODS_NO_SRC) + +default: libccan.a + +# Automatic dependency generation: makes ccan/*/*.d files. DEPGEN=-MD --include ccan/*.d +-include ccan/*/*.d + +# Anything with C files needs building; dir leaves / on, sort uniquifies +DIRS=$(patsubst %/, %, $(sort $(foreach m, $(filter-out $(MODS_EXCLUDE), $(MODS_WITH_SRC)), $(dir $(wildcard ccan/$m/*.c))))) -# Every directory with .c files (other than _info.c) is included. -DIRS=$(patsubst %/, %, $(sort $(dir $(wildcard ccan/*/[a-z]*.c)))) +# Generate everyone's separate Makefiles. +-include $(foreach dir, $(DIRS), $(dir)-Makefile) + +ccan/%-Makefile: + @echo $@: $(wildcard ccan/$*/*.[ch]) ccan/$*/_info > $@ + @echo ccan/$*.o: $(patsubst %.c, %.o, $(wildcard ccan/$*/*.c)) >> $@ # We compile all the ccan/foo/*.o files together into ccan/foo.o OBJFILES=$(DIRS:=.o) -libccan.a: $(OBJFILES) - $(AR) r $@ $^ - -# Dependencies are autogenerated in the .d files. +# We create all the .o files and link them together. $(OBJFILES): %.o: - $(CC) $(CFLAGS) -c -o $@ $*/[a-z]*.c + $(LD) -r -o $@ $^ +libccan.a: $(OBJFILES) + $(AR) r $@ $(OBJFILES)