diff options
author | steve <steve@FreeBSD.org> | 1998-02-26 03:33:33 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-02-26 03:33:33 +0000 |
commit | c87edabd8ebfb36818e60b264d88b301c994a348 (patch) | |
tree | fc8a39fae0803ad0ab7bb0d0a38c7b0bcd9cd709 /misc/dotfile | |
parent | 15a29238915693d71d5f13a80ad9bcf8733ce15f (diff) | |
download | FreeBSD-ports-c87edabd8ebfb36818e60b264d88b301c994a348.zip FreeBSD-ports-c87edabd8ebfb36818e60b264d88b301c994a348.tar.gz |
Clear up an inocuous message from make(1) about ignoring extra
target.
Diffstat (limited to 'misc/dotfile')
-rw-r--r-- | misc/dotfile/files/patch-aa | 126 |
1 files changed, 61 insertions, 65 deletions
diff --git a/misc/dotfile/files/patch-aa b/misc/dotfile/files/patch-aa index 3fe5dab..102657d 100644 --- a/misc/dotfile/files/patch-aa +++ b/misc/dotfile/files/patch-aa @@ -1,65 +1,61 @@ -*** Makefile.in.orig Sun Dec 21 06:40:34 1997 ---- Makefile.in Sun Feb 22 11:07:08 1998 -*************** -*** 23,48 **** - SHELL = /bin/sh - - ### Tell the user that there is nothing to be compiled. -- .PHONY: nothing -- nothing: -- @echo ---------------------------------------------------------------------- -- @echo ---------------------------------------------------------------------- -- @echo "The Dotfile Generator does not contain any files which has to be compiled!" -- @echo "On the other hand, during installation, all the modules need to be" -- @echo "bytecompiled, so now it's time to type: make install" -- @echo ---------------------------------------------------------------------- -- @echo ---------------------------------------------------------------------- - -- # - # install all the files in the corect places. - # - .PHONY: install - install: copydirs bytecompile -- @echo "**********************************************************************" -- @echo In the directory Doc, three articles in HTML format, concerning -- @echo The Dotfile Generator is located. If you want these to be installed -- @echo on your system, please do it manually. -- @echo "**********************************************************************" - - .PHONY: copydirs - copydirs: ---- 23,33 ---- -*************** -*** 58,64 **** - done - cp dotfile.1 $(mandir) - -@RM@ $(bindir)/dotfile -! -@LN@ -s $(bindir)/dotfile-$(version) $(bindir)/dotfile - chmod 755 $(bindir)/dotfile - chmod 755 $(bindir)/dotfile-$(version) - ---- 43,49 ---- - done - cp dotfile.1 $(mandir) - -@RM@ $(bindir)/dotfile -! -@LN@ -s dotfile-$(version) $(bindir)/dotfile - chmod 755 $(bindir)/dotfile - chmod 755 $(bindir)/dotfile-$(version) - -*************** -*** 72,78 **** - fvwm1 fvwm2: - @echo "----------------------------------------------------------------------" - @echo " Byte compiling $@" -! @if wish testwish; then \ - @WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \ - else \ - echo "An error should be shown above!"; \ ---- 57,63 ---- - fvwm1 fvwm2: - @echo "----------------------------------------------------------------------" - @echo " Byte compiling $@" -! @if $(WISH) testwish; then \ - @WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \ - else \ - echo "An error should be shown above!"; \ +--- Makefile.in.orig Sun Dec 21 07:40:34 1997 ++++ Makefile.in Wed Feb 25 20:49:29 1998 +@@ -23,26 +23,11 @@ + SHELL = /bin/sh + + ### Tell the user that there is nothing to be compiled. +-.PHONY: nothing +-nothing: +- @echo ---------------------------------------------------------------------- +- @echo ---------------------------------------------------------------------- +- @echo "The Dotfile Generator does not contain any files which has to be compiled!" +- @echo "On the other hand, during installation, all the modules need to be" +- @echo "bytecompiled, so now it's time to type: make install" +- @echo ---------------------------------------------------------------------- +- @echo ---------------------------------------------------------------------- + +-# + # install all the files in the corect places. + # + .PHONY: install + install: copydirs bytecompile +- @echo "**********************************************************************" +- @echo In the directory Doc, three articles in HTML format, concerning +- @echo The Dotfile Generator is located. If you want these to be installed +- @echo on your system, please do it manually. +- @echo "**********************************************************************" + + .PHONY: copydirs + copydirs: +@@ -58,7 +43,7 @@ + done + cp dotfile.1 $(mandir) + -@RM@ $(bindir)/dotfile +- -@LN@ -s $(bindir)/dotfile-$(version) $(bindir)/dotfile ++ -@LN@ -s dotfile-$(version) $(bindir)/dotfile + chmod 755 $(bindir)/dotfile + chmod 755 $(bindir)/dotfile-$(version) + +@@ -68,11 +53,11 @@ + # + # Targets that requre X (the modules using the fonts widget) + # +-.PHONY fvwm1 fvwm2: ++.PHONY: fvwm1 fvwm2 + fvwm1 fvwm2: + @echo "----------------------------------------------------------------------" + @echo " Byte compiling $@" +- @if wish testwish; then \ ++ @if $(WISH) testwish; then \ + @WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \ + else \ + echo "An error should be shown above!"; \ +@@ -83,7 +68,7 @@ + # + # Targets that may bytecompile without X + # +-.PHONY emacs tcsh rtin bash elm procmail ipfwadm: ++.PHONY: emacs tcsh rtin bash elm procmail ipfwadm + emacs tcsh rtin bash elm procmail ipfwadm: + @echo "----------------------------------------------------------------------" + @echo " Byte compiling $@" |