summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a41ee08..bdc157d 100644
--- a/Makefile
+++ b/Makefile
@@ -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