diff options
author | Luke Shumaker <luke@HP-dv6426us-u904.(none)> | 2009-10-29 22:00:30 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:18 -0600 |
commit | 22568919e9bdf29557be5aa3c69857d815a93751 (patch) | |
tree | 68e7d8fcca18d266962ae7b752ee8d05dcdf6f9d /Makefile | |
parent | 5688c8498f178feb364afdb714f580b295e983a0 (diff) |
rework rvs's build system, currently, it doesn't build :(
it fails on the plugins, the wrapper works fine
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -42,8 +42,7 @@ commit : distclean %/Makefile.in : Makefile.in %/; cp $< $@ distclean-mods = $(addprefix distclean-,$(mods)) - -.PHONY : distclean $(distclean-mods) +#.PHONY : distclean $(distclean-mods) distclean : $(distclean-mods) distclean-% : % %/ $(RM) -r $<-build/ @@ -57,11 +56,11 @@ complete-% : %/ find $< -type d -exec cp Makefile.in '{}' \; %-build : %/; $(MKDIR) $@ -%-build/Makefile : %-build %/configure +%-build/Makefile : %-build complete-% cd $<; ../$(patsubst %-build,%/,$<)/configure $(MAKE) -C $< Makefiles -build-% : %-build complete-% %-build/Makefile; $(MAKE) -C $< -install-% : %-build; $(MAKE) -C $< install -clean-% : %-build; $(MAKE) -C $< clean +build-% : %-build %-build/Makefile; $(MAKE) -C $< +install-% : %-build %-build/Makefile; $(MAKE) -C $< install +clean-% : %-build %-build/Makefile; $(MAKE) -C $< clean |