]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - bcd/Makefile
fish: remove trailing whitespace
[bsdgames-darwin.git] / bcd / Makefile
index db66a4bb70b6c2c5dd136c1142765e8757818e1d..768a9b02fcbef6a590a4c35b239c90463844ef86 100644 (file)
@@ -1,10 +1,24 @@
-#      from: @(#)Makefile      5.3 (Berkeley) 5/11/90
-#      $Id: Makefile,v 1.2 1993/08/01 05:46:02 mycroft Exp $
+#      $NetBSD: Makefile,v 1.8 2009/07/26 03:02:38 dholland Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 PROG=  bcd
-MAN6=  bcd.0
+MAN=   bcd.6
 MLINKS=        bcd.6 morse.6 bcd.6 ppt.6
-HIDEGAME=hidegame
+SRCS= bcd.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)
+       $(LN) -sf $(MAN).zst $(DESTDIR)/$(PREFIX)/share/man/man6/morse.6
+       $(LN) -sf $(MAN).zst $(DESTDIR)/$(PREFIX)/share/man/man6/ppt.6
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install