aboutsummaryrefslogtreecommitdiff
path: root/tests/pp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pp/Makefile')
-rw-r--r--tests/pp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pp/Makefile b/tests/pp/Makefile
index 0b96caa..314f13f 100644
--- a/tests/pp/Makefile
+++ b/tests/pp/Makefile
@@ -32,10 +32,10 @@ FILTER = 2>&1 | sed 's,$(SRC)/,,g'
# automatically generate .expect files with gcc:
%.expect: %.c
- gcc -E -P $< >$*.expect 2>&1
+ $(CC) -E -P $< >$*.expect 2>&1
%.expect: %.S
- gcc -E -P $< >$*.expect 2>&1
+ $(CC) -E -P $< >$*.expect 2>&1
# tell make not to delete
.PRECIOUS: %.expect