]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - ppt/Makefile
Use PREFIX now
[bsdgames-darwin.git] / ppt / Makefile
index 675b4d096383a4dbf827eb1468534d2f603c6fb8..550028936a6b7ad3a810fe5b7bda6c111cd83434 100644 (file)
@@ -1,9 +1,19 @@
-#      $NetBSD: Makefile,v 1.5 2001/12/12 00:07:49 tv Exp $
+#      $NetBSD: Makefile,v 1.6 2002/09/18 06:16:41 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=          ppt
-NOMAN=         # defined
-HIDEGAME=      hidegame
+SRCS=          ppt.c
 
-.include <bsd.prog.mk>
+all: $(PROG)
 
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+       $(STRIP) $(PROG)
+
+install: $(PROG)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install