]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hunt/huntd/Makefile
Fix darwin-amd64
[bsdgames-darwin.git] / hunt / huntd / Makefile
index 131b7696468d942770ce0e4c32c422333db004c1..385bb5b246b64ad8c9b0138eb8461c241fd0d93d 100644 (file)
@@ -1,17 +1,21 @@
-#      $NetBSD: Makefile,v 1.7 2019/02/04 09:51:48 mrg 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 <bsd.own.mk>
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) -o $(PROG) $(SRCS) $(EXTRADEFS) -I../include -I$(ROOT)
+       $(STRIP) $(PROG)
 
-# Has fallthru comment that is missed
-.if defined(HAVE_GCC) && ${HAVE_GCC} == 7 && ${ACTIVE_CC} == "gcc"
-COPTS.shots.c+=        -Wno-error=implicit-fallthrough
-.endif
+install: $(PROG) $(MAN)
+       $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
 
-.include <bsd.prog.mk>
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install