]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - canfield/cfscores/Makefile
Fix merge conflicts
[bsdgames-darwin.git] / canfield / cfscores / Makefile
index c4479ad7c6ca39d8be95c2412e9c730b125d6e3d..4e32a5d27811bfa03e7a57f77edda26c00def8cb 100644 (file)
@@ -1,9 +1,19 @@
-#      @(#)Makefile    5.2 (Berkeley) 4/8/91
+#      $NetBSD: Makefile,v 1.7 2002/09/18 06:16:40 lukem Exp $
+#      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
-PROG=  cfscores
-CFLAGS+=-I${.CURDIR}/../canfield
-NOMAN= noman
-HIDEGAME=hidegame
+PROG=          cfscores
+SRCS=          cfscores.c
 
-.include "../../Makefile.inc"
-.include <bsd.prog.mk>
+all: $(PROG)
+
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I../canfield -I$(ROOT)
+       $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install