]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - rain/Makefile
Get all the games compiling for iOS
[bsdgames-darwin.git] / rain / Makefile
index e35591e92bab37d9f5244915de0b43e83159c5ed..0f8a9224b58207443cd5e96f129d211d03c7dfdb 100644 (file)
@@ -1,9 +1,21 @@
-#      $NetBSD: Makefile,v 1.10 2008/01/28 07:03:59 dholland Exp $
+#      $NetBSD: Makefile,v 1.11 2010/02/06 23:45:25 he Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  rain
 MAN=   rain.6
-DPADD= ${LIBCURSES}
-LDADD= -lcurses
+SRCS=  rain.c
 
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw
+       $(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