X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile-ccan;h=fd959ffcd1c8db1671911314155bc040033fde0f;hp=c7eec337fba7c510df38adfc014f91f9b3b4f3c1;hb=19c5822d43acc402df753e669724e3b564473da5;hpb=8730b2e1bceff82fe9e8784ce1a671a9c12ef211 diff --git a/Makefile-ccan b/Makefile-ccan index c7eec337..fd959ffc 100644 --- a/Makefile-ccan +++ b/Makefile-ccan @@ -10,6 +10,7 @@ CFLAGS = $(CCAN_CFLAGS) -I. $(DEPGEN) MODS_NO_SRC := alignof \ array_size \ asearch \ + bitmap \ build_assert \ bytestring \ cast \ @@ -34,12 +35,14 @@ MODS_WITH_SRC := antithread \ avl \ bdelta \ block_pool \ + breakpoint \ btree \ ccan_tokenizer \ charset \ ciniparser \ crc \ crcsync \ + cpuid \ daemonize \ daemon_with_notify \ dgraph \ @@ -48,6 +51,7 @@ MODS_WITH_SRC := antithread \ foreach \ grab_file \ hash \ + heap \ htable \ idtree \ ilog \ @@ -88,6 +92,7 @@ MODS_WITH_SRC := antithread \ tally \ tap \ time \ + timer \ ttxml \ wwviaudio @@ -108,6 +113,7 @@ DIRS=$(patsubst %/, %, $(sort $(foreach m, $(filter-out $(MODS_EXCLUDE), $(MODS_ ccan/%-Makefile: @echo $@: $(wildcard ccan/$*/*.[ch]) ccan/$*/_info > $@ @echo ccan/$*.o: $(patsubst %.c, %.o, $(wildcard ccan/$*/*.c)) >> $@ + @echo ccan/$*.o: $(patsubst %.S, %.o, $(wildcard ccan/$*/*.S)) >> $@ # We compile all the ccan/foo/*.o files together into ccan/foo.o OBJFILES=$(DIRS:=.o)