summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <luke@HP-dv6426us-u904.(none)>2009-10-25 14:11:26 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:17 -0600
commitd946d850217edead9748082ac4be8d874d81e6e8 (patch)
tree3d3e1fc5f377ea56e515085e3953351ebd6c3b09 /Makefile
parent37438e6cb8566eba8a97c90fcb0b3784c5bb40cc (diff)
hmm. I kind of screwed up rvs plugins.
Worst, it was just a command I typed wrong that crippled a few files
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