X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile-ccan;h=40d03891e47c6e619c78b31466c1ea6538ee1ba4;hp=6641e53e6bf6c8228840a5a81a2014ca6cefb795;hb=7ec5b8e06b2fd5fa98b1fcde1158c286d2d429d8;hpb=d379e0ae835bdd047a5d277f7ded41f180134e27 diff --git a/Makefile-ccan b/Makefile-ccan index 6641e53e..40d03891 100644 --- a/Makefile-ccan +++ b/Makefile-ccan @@ -6,10 +6,12 @@ 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) -# Normal modules: no external dependencies, just a header: -MODS_NORMAL_NO_SRC := alignof \ +# Modules which are just a header: +MODS_NO_SRC := alignof \ + argcheck \ array_size \ asearch \ + bitmap \ build_assert \ bytestring \ cast \ @@ -18,14 +20,17 @@ MODS_NORMAL_NO_SRC := alignof \ container_of \ darray \ endian \ + minmax \ objset \ short_types \ + structeq \ tcon \ tlist \ - typesafe_cb + typesafe_cb \ + version # No external dependencies, with C code: -MODS_NORMAL_WITH_SRC := antithread \ +MODS_WITH_SRC := antithread \ antithread/alloc \ asort \ asprintf \ @@ -33,12 +38,14 @@ MODS_NORMAL_WITH_SRC := antithread \ avl \ bdelta \ block_pool \ + breakpoint \ btree \ ccan_tokenizer \ charset \ ciniparser \ crc \ crcsync \ + cpuid \ daemonize \ daemon_with_notify \ dgraph \ @@ -47,52 +54,54 @@ MODS_NORMAL_WITH_SRC := antithread \ foreach \ grab_file \ hash \ + heap \ htable \ idtree \ ilog \ + io \ isaac \ iscsi \ + jacobson_karels \ + jmap \ json \ + jset \ lbalance \ likely \ list \ md4 \ + memmem \ net \ + nfs \ noerr \ + ogg_to_pcm \ opt \ ptr_valid \ rbtree \ + rbuf \ read_write_all \ rfc822 \ + siphash \ sparse_bsearch \ str \ stringmap \ strmap \ strset \ - str_talloc \ take \ tal \ + tal/grab_file \ + tal/link \ + tal/path \ + tal/str \ + tal/talloc \ talloc \ - talloc_link \ tally \ tap \ time \ - ttxml - -MODS_NORMAL:=$(MODS_NORMAL_WITH_SRC) $(MODS_NORMAL_NO_SRC) - -# Modules which require external dependencies, thus may not pass check. -MODS_EXTERNAL_NO_SRC:= - -MODS_EXTERNAL_WITH_SRC:=jmap \ - jset \ - nfs \ - ogg_to_pcm \ + timer \ + ttxml \ wwviaudio -MODS_EXTERNAL:=$(MODS_EXTERNAL_NO_SRC) $(MODS_EXTERNAL_WITH_SRC) - -MODS:=$(MODS_EXTERNAL) $(MODS_NORMAL) +MODS:=$(MODS_WITH_SRC) $(MODS_NO_SRC) default: libccan.a @@ -101,7 +110,7 @@ DEPGEN=-MD -include ccan/*/*.d # Anything with C files needs building; dir leaves / on, sort uniquifies -DIRS=$(patsubst %/, %, $(sort $(foreach m, $(MODS_NORMAL_WITH_SRC), $(dir $(wildcard ccan/$m/*.c))))) +DIRS=$(patsubst %/, %, $(sort $(foreach m, $(filter-out $(MODS_EXCLUDE), $(MODS_WITH_SRC)), $(dir $(wildcard ccan/$m/*.c))))) # Generate everyone's separate Makefiles. -include $(foreach dir, $(DIRS), $(dir)-Makefile)