]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - rain/Makefile
Get all the games compiling for iOS
[bsdgames-darwin.git] / rain / Makefile
index 7f85034b302edcda10b0dc913828a2a2ef53b9c7..0f8a9224b58207443cd5e96f129d211d03c7dfdb 100644 (file)
@@ -3,7 +3,19 @@
 
 PROG=  rain
 MAN=   rain.6
-DPADD= ${LIBCURSES} ${LIBTERMINFO}
-LDADD= -lcurses -lterminfo
+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