]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - morse/Makefile
Use PREFIX now
[bsdgames-darwin.git] / morse / Makefile
index 390a2249deb3cd83533f71b1e69422e3aeb1be29..7cc3b0535fa8e86bae689c31c333f98963abb045 100644 (file)
@@ -1,10 +1,19 @@
 #      $NetBSD: Makefile,v 1.6 2002/09/18 06:16:40 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 #      $NetBSD: Makefile,v 1.6 2002/09/18 06:16:40 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
-NOMAN=         # defined
-
 PROG=          morse
 PROG=          morse
-HIDEGAME=      hidegame
+SRCS=          morse.c
+
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
 
 
-.include <bsd.prog.mk>
+clean:
+       rm -f $(CLEANFILES) $(PROG)
 
 
+.PHONY: all clean install