diff options
author | Luke Shumaker <luke@HP-dv6426us-u904.(none)> | 2009-10-25 14:11:26 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:17 -0600 |
commit | d946d850217edead9748082ac4be8d874d81e6e8 (patch) | |
tree | 3d3e1fc5f377ea56e515085e3953351ebd6c3b09 /Makefile | |
parent | 37438e6cb8566eba8a97c90fcb0b3784c5bb40cc (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-- | 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 |