summaryrefslogtreecommitdiffstats
path: root/arithmetic/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arithmetic/Makefile')
-rw-r--r--arithmetic/Makefile17
1 files changed, 15 insertions, 2 deletions
diff --git a/arithmetic/Makefile b/arithmetic/Makefile
index 0ef580e7..133c1850 100644
--- a/arithmetic/Makefile
+++ b/arithmetic/Makefile
@@ -3,6 +3,19 @@
PROG= arithmetic
MAN= arithmetic.6
-HIDEGAME=hidegame
+SRCS= arithmetic.c
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+ $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+ $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+ $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/games/$(PROG)
+ $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN)
+
+clean:
+ rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install