]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - morse/Makefile
cgram: allow navigation with KEY_PPAGE and KEY_NPAGE
[bsdgames-darwin.git] / morse / Makefile
index a189d968ac315748d8669e293b6e601cac12ece4..7cc3b0535fa8e86bae689c31c333f98963abb045 100644 (file)
@@ -1,9 +1,19 @@
-#      from: @(#)Makefile      5.1 (Berkeley) 5/11/90
-#      $Id: Makefile,v 1.2 1993/08/01 05:44:57 mycroft Exp $
+#      $NetBSD: Makefile,v 1.6 2002/09/18 06:16:40 lukem Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
-PROG=  morse
-NOMAN= noman
-HIDEGAME=hidegame
+PROG=          morse
+SRCS=          morse.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)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install