]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - pom/Makefile
countmail: remove outdated comments
[bsdgames-darwin.git] / pom / Makefile
index ae49b458cd962c5135fd29e4ae0ddf76799be6e9..f436cc2e55046ea9a2a67c73b78b4826806cd7be 100644 (file)
@@ -1,9 +1,21 @@
-#      from: @(#)Makefile      5.1 (Berkeley) 5/11/90
-#      $Id: Makefile,v 1.3 1994/12/22 09:35:29 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