]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - fish/Makefile
cgram: allow providing an input file instead of the random fortune
[bsdgames-darwin.git] / fish / Makefile
index b1847b71f35e27d612e62bf72fa7b66b6bfea0bb..392b744f19bdce7f6dd51a3806f5d881f547ef8a 100644 (file)
@@ -1,10 +1,23 @@
-#      @(#)Makefile    5.5 (Berkeley) 1/18/91
+#      $NetBSD: Makefile,v 1.10 1999/02/13 02:54:21 lukem Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  fish
-MAN6=  fish.0
-HIDEGAME=hidegame
+MAN=   fish.6
+SRCS=  fish.c
+FILES=fish.instr
 
-beforeinstall: 
-       install -c -o bin -g bin -m 444 ${.CURDIR}/fish.instr /usr/share/games
+all: $(PROG)
 
-.include <bsd.prog.mk>
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I$(ROOT)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/bsd-$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/bsd-$(MAN)
+       $(GINSTALL) -Dm644 $(FILES) $(DESTDIR)/$(PREFIX)/share/games/bsd-$(FILES)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install