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