X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile-ccan;h=d4a55286eae1b9844647feb73b4c38c3234162d7;hp=2d713a6898e402e21bd45530cc586b63ca86ca4b;hb=1ddb7420f1ac53c060aec62e26702d1d7029fc54;hpb=9552c972f725f70ab024e0c9d0487ff078322fd8 diff --git a/Makefile-ccan b/Makefile-ccan index 2d713a68..d4a55286 100644 --- a/Makefile-ccan +++ b/Makefile-ccan @@ -5,104 +5,143 @@ #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) +CFLAGS_FORCE_C_SOURCE = -x c -# Modules which are just a header: -MODS_NO_SRC := alignof \ +MODS := a_star \ + aga \ + agar \ + alignof \ + altstack \ + antithread \ + antithread/alloc \ + argcheck \ array_size \ asearch \ - build_assert \ - bytestring \ - cast \ - check_type \ - compiler \ - container_of \ - darray \ - endian \ - objset \ - short_types \ - tcon \ - tlist \ - typesafe_cb \ - version - -# No external dependencies, with C code: -MODS_WITH_SRC := antithread \ - antithread/alloc \ asort \ asprintf \ autodata \ avl \ + base64 \ bdelta \ + bitmap \ block_pool \ breakpoint \ btree \ + build_assert \ + bytestring \ + cast \ ccan_tokenizer \ + cdump \ charset \ + check_type \ ciniparser \ + compiler \ + container_of \ + cppmagic \ + cpuid \ crc \ crcsync \ + crypto/ripemd160 \ + crypto/sha256 \ + crypto/sha512 \ + crypto/shachain \ + crypto/siphash24 \ daemonize \ daemon_with_notify \ + darray \ + deque \ dgraph \ + endian \ + eratosthenes \ err \ failtest \ foreach \ + generator \ grab_file \ hash \ + heap \ htable \ idtree \ ilog \ + invbloom \ + io \ isaac \ iscsi \ + jacobson_karels \ jmap \ - json \ jset \ + json \ lbalance \ likely \ list \ + lpq \ + lqueue \ + lstack \ md4 \ + mem \ + minmax \ net \ nfs \ noerr \ + ntdb \ + objset \ ogg_to_pcm \ opt \ + order \ + permutation \ + pipecmd \ + pr_log \ + ptrint \ ptr_valid \ + pushpull \ rbtree \ rbuf \ read_write_all \ rfc822 \ + rszshm \ + short_types \ siphash \ sparse_bsearch \ str \ + str/hex \ + strgrp \ + stringbuilder \ stringmap \ strmap \ strset \ - str_talloc \ + structeq \ take \ tal \ + tal/grab_file \ tal/link \ tal/path \ + tal/stack \ tal/str \ tal/talloc \ talloc \ - talloc_link \ tally \ tap \ + tcon \ time \ timer \ + tlist \ + tlist2 \ ttxml \ - wwviaudio + typesafe_cb \ + version \ + wwviaudio \ + xstring -MODS:=$(MODS_WITH_SRC) $(MODS_NO_SRC) +# Anything with C files needs building; dir leaves / on, sort uniquifies +MODS_WITH_SRC = $(patsubst ccan/%/, %, $(sort $(foreach m, $(MODS), $(dir $(wildcard ccan/$m/*.c))))) default: libccan.a # Automatic dependency generation: makes ccan/*/*.d files. -DEPGEN=-MD --include ccan/*/*.d +DEPGEN=-MMD +-include $(foreach m, $(MODS), ccan/$(m)/*.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))))) +DIRS=$(patsubst %, ccan/%, $(filter-out $(MODS_EXCLUDE), $(MODS_WITH_SRC))) # Generate everyone's separate Makefiles. -include $(foreach dir, $(DIRS), $(dir)-Makefile)