diff options
author | Luke Shumaker <luke@HP-dv6426us-u904.(none)> | 2009-10-25 00:40:59 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:16 -0600 |
commit | edd72c20edf7af7c0e3db40e8e6d64510dc60a4c (patch) | |
tree | 08d0f4665877805bc86e3970ae454296682e988a /Makefile | |
parent | 02b786650ec98a1b686d5ed17cb76aca22a06e0d (diff) |
ptranslate builds without make throwing errors
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -36,12 +36,12 @@ all : %/COPYING : COPYING %/; $(CP) $< $@ %/configure : configure %/; $(CP) $< $@ -clean-mods = $(addprefix clean-,$(mods)) -#complete-mods = $(addprefix complete-,$(mods)) +clean-mods = $(addprefix clean-,$(mods)) +distclean-mods = $(addprefix distclean-,$(mods)) -.PHONY : clean -clean : $(clean-mods) -clean-% : % %/ +.PHONY : distclean +distclean : $(distclean-mods) +distclean-% : % %/ $(RM) -r $<-build/ $(RM) $</COPYING $(RM) $</configure |