diff Makefile @ 503:f9be2bc8f8ed

It would be nice if the install target would print out what it is actually installing. Thus, make it so.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 17 Nov 2012 17:13:12 +0200
parents e1526854e735
children a9d0d35476ae
line wrap: on
line diff
--- a/Makefile	Sat Nov 17 17:04:44 2012 +0200
+++ b/Makefile	Sat Nov 17 17:13:12 2012 +0200
@@ -22,8 +22,8 @@
 PREFIX ?= /usr/local
 INSTALL = install
 
+include $(DMLIB)Makefile.gen
 
 
 install: all
-	@for fn in $(TOOL_TARGETS); do $(INSTALL) -m 755 "$$fn" $(PREFIX)/bin/; done
-include $(DMLIB)Makefile.gen
+	@for fn in $(TOOL_TARGETS); do echo " INSTALL $$fn $(PREFIX)/bin/"; $(INSTALL) -m 755 "$$fn" $(PREFIX)/bin/; done