X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/01c156137af771211dcc8c7bedbe4121c12f22b8..f9768285816ca5df05679e23592d03761d504380:/hunt/huntd/Makefile diff --git a/hunt/huntd/Makefile b/hunt/huntd/Makefile index 0981256f..385bb5b2 100644 --- a/hunt/huntd/Makefile +++ b/hunt/huntd/Makefile @@ -1,10 +1,21 @@ -# $NetBSD: Makefile,v 1.6 2014/03/29 22:29:55 dholland Exp $ +# $NetBSD: Makefile,v 1.8 2019/09/29 23:44:59 mrg Exp $ PROG= huntd SRCS= answer.c draw.c driver.c execute.c expl.c \ extern.c makemaze.c shots.c support.c terminal.c MAN= huntd.6 -CPPFLAGS+=-I${.CURDIR}/../include +all: $(PROG) -.include +$(PROG): $(SRCS) + $(CC) $(CFLAGS) -o $(PROG) $(SRCS) $(EXTRADEFS) -I../include -I$(ROOT) + $(STRIP) $(PROG) + +install: $(PROG) $(MAN) + $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG) + $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN) + +clean: + rm -f $(CLEANFILES) $(PROG) + +.PHONY: all clean install