]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - pom/Makefile
Use PREFIX now
[bsdgames-darwin.git] / pom / Makefile
index 755f2ea1e80c88d359053a22481e78c9d22ff227..f436cc2e55046ea9a2a67c73b78b4826806cd7be 100644 (file)
@@ -3,7 +3,19 @@
 
 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