X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile-ccan;h=3efe59a5da2fdbee4c602797c2a3f4a08288b893;hp=6911dffc28b73a1de92e0823308f2c87516c7e7d;hb=74257cee33ae3033f961d5f22a0313b8cb1b18d4;hpb=e73b0b37186b158369dc70652edae6706cba8133 diff --git a/Makefile-ccan b/Makefile-ccan index 6911dffc..3efe59a5 100644 --- a/Makefile-ccan +++ b/Makefile-ccan @@ -2,10 +2,10 @@ # For simple projects you could just do: # SRCFILES += $(wildcard ccan/*/*.c) -CCAN_CFLAGS=-g -O3 -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror +#CCAN_CFLAGS=-g -O3 -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations +CCAN_CFLAGS=-g -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wwrite-strings -DCCAN_STR_DEBUG=1 CFLAGS = $(CCAN_CFLAGS) -I. $(DEPGEN) -#CFLAGS=-g -Wall -Wstrict-prototypes -Wold-style-definition -Werror $(DEPGEN) default: libccan.a @@ -13,8 +13,14 @@ default: libccan.a DEPGEN=-MD -include ccan/*/*.d -# Every directory with .c files is included. -DIRS=$(filter-out $(foreach d,$(EXCLUDE),ccan/$d), $(patsubst %/, %, $(sort $(dir $(wildcard ccan/*/*.c))))) +# Anything with an _info file is a module. +REALLY_ALL=$(patsubst ccan/%/_info, %, $(wildcard ccan/*/_info)) + +# Exclude any modules we can't build. +ALL=$(filter-out $(EXCLUDE), $(REALLY_ALL)) + +# Anything with C files needs building; dir leaves / on, sort uniquifies +DIRS=$(patsubst %/, %, $(sort $(foreach m, $(ALL), $(dir $(wildcard ccan/$m/*.c))))) # Generate everyone's separate Makefiles. -include $(foreach dir, $(DIRS), $(dir)-Makefile)