]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - fish/Makefile
Get all the games compiling for iOS
[bsdgames-darwin.git] / fish / Makefile
index 0a53dd4a476644fcc50455363ba036b7cdea9764..b6d2ac3691bd39cfbdfee8468c66244b7cbf23a1 100644 (file)
@@ -1,12 +1,23 @@
-#      $NetBSD: Makefile,v 1.9 1998/09/29 07:33:21 lukem Exp $
+#      $NetBSD: Makefile,v 1.10 1999/02/13 02:54:21 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  fish
 MAN=   fish.6
-HIDEGAME=hidegame
-.if !defined(NOSHARE)
+SRCS=  fish.c
 FILES=fish.instr
-FILESDIR=/usr/share/games
-.endif
 
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/games/bsd-$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/bsd-$(MAN)
+       $(GINSTALL) -Dm644 $(FILES) $(DESTDIR)/usr/share/games/bsd-$(FILES)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install