From 009fbbc1265b6708b96319acfd21be37a42bc215 Mon Sep 17 00:00:00 2001 From: lukem Date: Wed, 22 Oct 1997 05:05:21 +0000 Subject: [PATCH] use CPPFLAGS instead of CFLAGS --- games/hunt/Makefile.inc | 4 ++-- games/hunt/hunt/Makefile | 4 ++-- games/robots/Makefile | 4 ++-- games/rogue/Makefile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/games/hunt/Makefile.inc b/games/hunt/Makefile.inc index b27c37d67ad3..176ad4a0b31b 100644 --- a/games/hunt/Makefile.inc +++ b/games/hunt/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.2 1997/10/10 16:32:15 lukem Exp $ +# $NetBSD: Makefile.inc,v 1.3 1997/10/22 05:05:21 lukem Exp $ # # Hunt # Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold @@ -62,6 +62,6 @@ SYSLIBS= # Generic definitions # DEFS= $(GAME_PARAM) $(DEFS_BSD44) -CFLAGS+= -O2 $(SYSCFLAGS) $(DEFS) -DHUNTD=\"/usr/games/huntd\" +CPPFLAGS+= $(SYSCFLAGS) $(DEFS) -DHUNTD=\"/usr/games/huntd\" .include "../Makefile.inc" diff --git a/games/hunt/hunt/Makefile b/games/hunt/hunt/Makefile index 127f7119aa66..64c8a96b60c1 100644 --- a/games/hunt/hunt/Makefile +++ b/games/hunt/hunt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 1997/10/04 09:11:18 mrg Exp $ +# $NetBSD: Makefile,v 1.2 1997/10/22 05:05:27 lukem Exp $ PROG= hunt SRCS= connect.c hunt.c otto.c playit.c pathname.c @@ -6,7 +6,7 @@ MAN= hunt.6 LDADD= -ltermcap -lcurses DPADD= ${LIBTERMCAP} ${LIBCURSES} -CFLAGS+=-I${.CURDIR}/../huntd +CPPFLAGS+=-I${.CURDIR}/../huntd .PATH: ${.CURDIR}/../huntd diff --git a/games/robots/Makefile b/games/robots/Makefile index 014af7e2e10e..55557caed619 100644 --- a/games/robots/Makefile +++ b/games/robots/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.8 1997/10/12 14:09:55 lukem Exp $ +# $NetBSD: Makefile,v 1.9 1997/10/22 05:05:46 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= robots -CFLAGS+=-DMAX_PER_UID=5 +CPPFLAGS+=-DMAX_PER_UID=5 SRCS= extern.c init_field.c main.c make_level.c move.c move_robs.c \ play_level.c query.c rnd_pos.c score.c flush_in.c MAN= robots.6 diff --git a/games/rogue/Makefile b/games/rogue/Makefile index d3127fba9c71..07d580850e08 100644 --- a/games/rogue/Makefile +++ b/games/rogue/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.8 1997/10/11 09:34:19 mycroft Exp $ +# $NetBSD: Makefile,v 1.9 1997/10/22 05:09:36 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= rogue -CFLAGS+=-DUNIX -fwritable-strings +CPPFLAGS+=-DUNIX -fwritable-strings SRCS= curses.c hit.c init.c inventory.c level.c machdep.c main.c \ message.c monster.c move.c object.c pack.c play.c random.c ring.c \ room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.c