summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--utils/nhfsstone/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/nhfsstone/Makefile b/utils/nhfsstone/Makefile
index c2945d4..cb25627 100644
--- a/utils/nhfsstone/Makefile
+++ b/utils/nhfsstone/Makefile
@@ -2,8 +2,15 @@
# Makefile for nhfsstone
#
+SCRIPTS = nhfsrun nhfsnums nhfsgraph
+
PROGRAM = nhfsstone
OBJS = nhfsstone.o
-MAN8 = nhfsstone
+MAN8 = nhfsstone $(SCRIPTS)
include $(TOP)rules.mk
+
+install::
+ for s in $(SCRIPTS); do \
+ $(INSTALLBIN) $(PROGRAM) $(SBINDIR)/$(PREFIX)$k$$s; \
+ done