]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - adventure/Makefile
Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the
[bsdgames-darwin.git] / adventure / Makefile
index 834502a898245fa59925a55aa7b0459b59f24ef9..6530c3ce36b474fc3992709b0b75b5f1d7df5453 100644 (file)
@@ -1,16 +1,19 @@
+#      $NetBSD: Makefile,v 1.13 2003/11/16 14:14:18 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/12/93
 
 PROG=  adventure
 SRCS=  main.c init.c done.c save.c subr.c vocab.c wizard.c io.c data.c crc.c
-MAN6=  adventure.0
-CFLAGS+=-traditional-cpp
+MAN=   adventure.6
 HIDEGAME=hidegame
-CLEANFILES+=setup data.c
+CLEANFILES+=setup setup.lo data.c
 
 data.c: glorkz setup
+       ${_MKTARGET_CREATE}
        ./setup ${.CURDIR}/glorkz > data.c
 
-setup: setup.c hdr.h
-       ${CC} -o setup ${.CURDIR}/setup.c
+setup.lo: hdr.h
+setup: setup.lo
+       ${_MKTARGET_LINK}
+       ${HOST_LINK.c} -o ${.TARGET} ${.ALLSRC}
 
 .include <bsd.prog.mk>