diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -23,7 +23,9 @@ RM = rm -f MKDIR = mkdir -p # variables -mods = $(patsubst ./%,%,$(shell find ./* -maxdepth 0 -type d)) +mods = $(filter-out %-build,\ + $(patsubst ./%,%,$(shell find ./* -maxdepth 0 -type d))\ + ) .PHONY : all all : @@ -48,7 +50,7 @@ distclean-% : % %/ complete-% : %/ cp COPYING $< cp configure $< - find $<* -type d -exec cp Makefile.in '{}' \; + find $< -type d -exec cp Makefile.in '{}' \; %-build : %/; $(MKDIR) $@ %-build/Makefile : %-build %/configure |