]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - ppt/Makefile
Get all the games compiling for iOS
[bsdgames-darwin.git] / ppt / Makefile
index 13700cbead2560d150bf542ff948df6a87983fc7..0b58797df18b888902536189c1d2277d48306d6a 100644 (file)
@@ -1,9 +1,19 @@
-#      from: @(#)Makefile      5.1 (Berkeley) 5/11/90
-#      $Id: Makefile,v 1.2 1993/08/01 05:44:46 mycroft Exp $
+#      $NetBSD: Makefile,v 1.6 2002/09/18 06:16:41 lukem Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
-PROG=  ppt
-NOMAN= noman
-HIDEGAME=hidegame
+PROG=          ppt
+SRCS=          ppt.c
 
-.include <bsd.prog.mk>
+all: $(PROG)
 
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+       $(STRIP) $(PROG)
+
+install: $(PROG)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/games/$(PROG)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install