Makefile.in
changeset 333 d647d0e6021e
parent 317 ca15018d30bd
child 334 49b354cfd34d
     1.1 --- a/Makefile.in	Tue Aug 07 17:10:07 2007 +0000
     1.2 +++ b/Makefile.in	Wed Aug 15 14:59:37 2007 +0000
     1.3 @@ -25,6 +25,7 @@
     1.4  clean: clean-bin clean-lib clean-doc
     1.5  
     1.6  distclean: clean
     1.7 +	@echo "  RM     Makefile"
     1.8  	@rm -f Makefile
     1.9  
    1.10  uninstall: install-local-test uninstall-bin uninstall-lib uninstall-doc uninstall-man
    1.11 @@ -36,7 +37,8 @@
    1.12  # Build rules
    1.13  
    1.14  build-bin: ct-ng
    1.15 -	@chmod a+x ct-ng
    1.16 +	@echo "  CHMOD  $<"
    1.17 +	@chmod a+x $<
    1.18  
    1.19  build-lib:
    1.20  
    1.21 @@ -61,12 +63,16 @@
    1.22  # Clean rules
    1.23  
    1.24  clean-bin:
    1.25 +	@echo "  RM     ct-ng"
    1.26  	@rm -f ct-ng
    1.27  
    1.28  clean-lib:
    1.29  
    1.30  clean-doc:
    1.31 -	@rm -f docs/ct-ng.1 docs/ct-ng.1.gz
    1.32 +	@echo "  RM     docs/ct-ng.1"
    1.33 +	@rm -f docs/ct-ng.1
    1.34 +	@echo "  RM     docs/ct-ng.1.gz"
    1.35 +	@rm -f docs/ct-ng.1.gz
    1.36  
    1.37  #--------------------------------------
    1.38  # Install rules