aboutsummaryrefslogtreecommitdiffstats
path: root/test/c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c')
-rw-r--r--test/c/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/c/Makefile b/test/c/Makefile
index 94feb993..51a8f105 100644
--- a/test/c/Makefile
+++ b/test/c/Makefile
@@ -21,10 +21,10 @@ all_s: $(PROGS:%=%.s)
all_gcc: $(PROGS:%=%.gcc)
-%.compcert: %.c $(CCOMP)
+%.compcert: %.c
$(CCOMP) $(CCOMPFLAGS) -o $*.compcert $*.c $(LIBS)
-%.s: %.c $(CCOMP)
+%.s: %.c
$(CCOMP) $(CCOMPFLAGS) -S $*.c
%.gcc: %.c