Use CFLAGS and LDFLAGS when compiling mkmagic. This ensures that all the

correct flags are being used (esp. NO_WERROR wrt clang).

Submitted by:	Dimitry Andric <dimitry at andric.com>
Reviewed by:	ru
This commit is contained in:
Rui Paulo 2010-08-01 12:10:32 +00:00
parent d4352d2928
commit a7c2001059
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210730

View File

@ -40,8 +40,7 @@ magic.mgc: mkmagic magic
CLEANFILES+= mkmagic
build-tools: mkmagic
mkmagic: apprentice.c funcs.c magic.c print.c
${CC} -DHAVE_CONFIG_H -DCOMPILE_ONLY \
-I${.CURDIR} -I${CONTRDIR} -o ${.TARGET} ${.ALLSRC}
${CC} ${CFLAGS} -DCOMPILE_ONLY ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
FILEVER!= awk '$$1 == "\#define" && $$2 == "VERSION" { print $$3; exit }' \
${.CURDIR}/config.h