From: David Gibson Date: Mon, 21 Nov 2016 12:45:50 +0000 (+1100) Subject: Makefile: Remove generator modules from the exclude list X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=c162378ac51ba2376ff6766c91167da177fcb848 Makefile: Remove generator modules from the exclude list There's no real reason to exclude 'generator' from the build or check targets. Add it back in. Signed-off-by: David Gibson --- diff --git a/Makefile b/Makefile index 6559c702..c170631e 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ ALL_INFOS := $(INFO_SRCS:%_info=%info) ALL_MODULES := $(ALL_INFOS:%/info=%) # ... Except stuff that needs external dependencies, which we exclude -EXCLUDE := altstack generator jmap jset nfs ogg_to_pcm tal/talloc wwviaudio +EXCLUDE := altstack jmap jset nfs ogg_to_pcm tal/talloc wwviaudio MODULES:= $(filter-out $(EXCLUDE:%=ccan/%), $(ALL_MODULES)) # Sources are C files in each module, objects the resulting .o files