]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - number/Makefile
cgram: adjust style to survive lint's strict bool mode
[bsdgames-darwin.git] / number / Makefile
index 20aea694f92f68a53fe85734353e6bb6f0180fbb..eb50d2f3b8234f24902abf09a5ca84dd8483827d 100644 (file)
@@ -1,7 +1,21 @@
-#      from: @(#)Makefile      5.2 (Berkeley) 5/11/90
-#      $Id: Makefile,v 1.3 1994/12/22 09:35:02 cgd Exp $
+#      $NetBSD: Makefile,v 1.4 1995/03/23 08:35:27 cgd Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  number
 MAN=   number.6
+SRCS=  number.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