From d454c2682afbfd3e1aa98fd1be585edacd80b3c7 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 26 Oct 2009 22:35:57 -0400 Subject: add .gitignore clean up Makefile a bit add comments on `bashisms' in configure Add a `make commit' bit. Won't really be usefull to others, but is way more convenient for me than make distclean git add -A git commit -a --- Makefile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 71a3942..260b95f 100644 --- a/Makefile +++ b/Makefile @@ -30,16 +30,20 @@ mods = $(filter-out %-build,\ .PHONY : all all : +.PHONY : commit +commit : distclean + git add -A + git commit -a + .SECONDARY: %/COPYING : COPYING %/; cp $< $@ %/configure : configure %/; cp $< $@ %/Makefile.in : Makefile.in %/; cp $< $@ -clean-mods = $(addprefix clean-,$(mods)) -distclean-mods = $(addprefix distclean-,$(mods)) +distclean-mods = $(addprefix distclean-,$(mods)) -.PHONY : distclean +.PHONY : distclean $(distclean-mods) distclean : $(distclean-mods) distclean-% : % %/ $(RM) -r $<-build/ @@ -57,10 +61,7 @@ complete-% : %/ cd $<; ../$(patsubst %-build,%/,$<)/configure $(MAKE) -C $< Makefiles -build-% : %-build complete-% %-build/Makefile - $(MAKE) -C $< -install-% : %-build build-% - $(MAKE) -C $< install -clean-% : %-build - $(MAKE) -C $< clean +build-% : %-build complete-% %-build/Makefile; $(MAKE) -C $< +install-% : %-build; $(MAKE) -C $< install +clean-% : %-build; $(MAKE) -C $< clean -- cgit v1.2.3