]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - pig/Makefile
Fix merge conflicts
[bsdgames-darwin.git] / pig / Makefile
index 60f6b24c09172bcd20d209b784ddb20cb3d5d0e2..a9f85f23f88f146d4dbb26fd7310ba14fe1a9375 100644 (file)
@@ -1,6 +1,21 @@
+#      $NetBSD: Makefile,v 1.3 1995/03/23 08:41:34 cgd Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  pig
-MAN6=  pig.0
+MAN=   pig.6
+SRCS=  pig.c
 
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install