diff options
author | asami <asami@FreeBSD.org> | 1997-05-13 05:52:40 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-05-13 05:52:40 +0000 |
commit | 6c574c5c4f7c96956e10ad9caa299709506227fe (patch) | |
tree | ebaed236fb318b2bd6fe90cca9afc8239ced6832 /games | |
parent | 1e22d2cd00f43d8d629787730bcf387ea25821a1 (diff) | |
download | FreeBSD-src-6c574c5c4f7c96956e10ad9caa299709506227fe.zip FreeBSD-src-6c574c5c4f7c96956e10ad9caa299709506227fe.tar.gz |
Add ${CFLAGS} and ${LDFLAGS} to the setup command line.
Diffstat (limited to 'games')
-rw-r--r-- | games/adventure/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/adventure/Makefile b/games/adventure/Makefile index 3c2a543..d661d52 100644 --- a/games/adventure/Makefile +++ b/games/adventure/Makefile @@ -11,6 +11,6 @@ data.c: glorkz setup ./setup ${.CURDIR}/glorkz > data.c setup: setup.c hdr.h ${LIBCRT0} ${LIBC} - ${CC} -o setup ${.CURDIR}/setup.c + ${CC} ${CFLAGS} ${LDFLAGS} -o setup ${.CURDIR}/setup.c .include <bsd.prog.mk> |