# HG changeset patch # User Matti Hamalainen # Date 1353165192 -7200 # Node ID f9be2bc8f8ed5ee3288a004effd7939a4da302cc # Parent e1526854e7355f7179c6b2741be3f8206d3338f3 It would be nice if the install target would print out what it is actually installing. Thus, make it so. diff -r e1526854e735 -r f9be2bc8f8ed Makefile --- 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