]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - pom/Makefile
Use PREFIX now
[bsdgames-darwin.git] / pom / Makefile
index 7f251b626f9f6e1cbfa9d73afd57600e2f078b2c..f436cc2e55046ea9a2a67c73b78b4826806cd7be 100644 (file)
@@ -1,9 +1,21 @@
-#      $NetBSD: Makefile,v 1.4 1995/03/23 08:35:33 cgd Exp $
+#      $NetBSD: Makefile,v 1.8 2009/07/26 03:05:52 dholland Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  pom
 MAN=   pom.6
-DPADD= ${LIBM}
-LDADD= -lm
+SRCS=  pom.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