summaryrefslogtreecommitdiffstats
path: root/build/header.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/header.mk')
-rw-r--r--build/header.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/header.mk b/build/header.mk
index 65e95cb..afd04d0 100644
--- a/build/header.mk
+++ b/build/header.mk
@@ -76,16 +76,18 @@ gen/config.h: ${PKG_HEADERS} ${HEADERS}
# The short name of the config test
SLUG = ${@:gen/%.h=%}
+# The hidden output file name
+OUT = ${SLUG:has/%=gen/has/.%.out}
${HEADERS}: cc
@${MKDIR} ${@D}
- @build/define-if.sh ${SLUG} build/cc.sh build/${SLUG}.c >$@ 2>$@.log; \
+ @build/define-if.sh ${SLUG} build/cc.sh build/${SLUG}.c -o ${OUT} >$@ 2>$@.log; \
build/msg-if.sh "[ CC ] ${SLUG}.c" test $$? -eq 0
.PHONY: ${HEADERS}
# Check that the C compiler works at all
cc::
- @build/cc.sh build/empty.c 2>gen/cc.log; \
+ @build/cc.sh build/empty.c -o gen/.cc.out 2>gen/cc.log; \
ret=$$?; \
build/msg-if.sh "[ CC ] build/empty.c" test $$ret -eq 0; \
exit $$ret