X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/1a7e5739c8385759b4a115c76b4baa1b1e17120a..HEAD:/canfield/cfscores/Makefile?ds=sidebyside diff --git a/canfield/cfscores/Makefile b/canfield/cfscores/Makefile index 312f1467..4e32a5d2 100644 --- a/canfield/cfscores/Makefile +++ b/canfield/cfscores/Makefile @@ -1,10 +1,19 @@ -# $NetBSD: Makefile,v 1.6 2001/12/12 00:07:48 tv Exp $ +# $NetBSD: Makefile,v 1.7 2002/09/18 06:16:40 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= cfscores -CPPFLAGS+= -I${.CURDIR}/../canfield -NOMAN= # defined -HIDEGAME= hidegame +SRCS= cfscores.c -.include "../../Makefile.inc" -.include +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