summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 083c703..d8edb2c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -25,6 +25,7 @@ install: install-local-test build install-bin install-lib install-doc install-ma
clean: clean-bin clean-lib clean-doc
distclean: clean
+ @echo " RM Makefile"
@rm -f Makefile
uninstall: install-local-test uninstall-bin uninstall-lib uninstall-doc uninstall-man
@@ -36,7 +37,8 @@ uninstall: install-local-test uninstall-bin uninstall-lib uninstall-doc uninstal
# Build rules
build-bin: ct-ng
- @chmod a+x ct-ng
+ @echo " CHMOD $<"
+ @chmod a+x $<
build-lib:
@@ -61,12 +63,16 @@ docs/ct-ng.1.gz: docs/ct-ng.1
# Clean rules
clean-bin:
+ @echo " RM ct-ng"
@rm -f ct-ng
clean-lib:
clean-doc:
- @rm -f docs/ct-ng.1 docs/ct-ng.1.gz
+ @echo " RM docs/ct-ng.1"
+ @rm -f docs/ct-ng.1
+ @echo " RM docs/ct-ng.1.gz"
+ @rm -f docs/ct-ng.1.gz
#--------------------------------------
# Install rules