aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/Makefile
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2017-09-11 16:11:39 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2017-09-11 16:11:39 +0200
commit5fbc0af7e902bacafb5c77a0f523eb4b36198dea (patch)
tree9b860306d463b0f46d2fa1d009bc8550ffee2e5b /test/regression/Makefile
parent0df003671aa3c607977272571d89a4f6bad1c1e9 (diff)
downloadcompcert-kvx-5fbc0af7e902bacafb5c77a0f523eb4b36198dea.tar.gz
compcert-kvx-5fbc0af7e902bacafb5c77a0f523eb4b36198dea.zip
test/*/Makefile: suppress dependencies on ../../ccomp
Not very useful in practice (make clean is generally done before make all) and problematic under Cygwin where ../../ccomp is really ../../ccomp.exe
Diffstat (limited to 'test/regression/Makefile')
-rw-r--r--test/regression/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/regression/Makefile b/test/regression/Makefile
index a0f1fe12..7198bebf 100644
--- a/test/regression/Makefile
+++ b/test/regression/Makefile
@@ -50,17 +50,17 @@ all: $(TESTS:%=%.compcert) $(TESTS_COMP:%=%.compcert) $(TESTS_DIFF:%=%.compcert)
all_s: $(TESTS:%=%.s) $(TESTS_COMP:%=%.s) $(TESTS_DIFF:%=%.s) $(EXTRAS:%=%.s)
-interop1.compcert: interop1.c $(CCOMP)
+interop1.compcert: interop1.c
$(CC) -DCC_SIDE -c -o interop1n.o interop1.c
$(CCOMP) $(CCOMPFLAGS) -DCOMPCERT_SIDE -o interop1.compcert interop1.c interop1n.o $(LIBS)
-interop1.s: interop1.c $(CCOMP)
+interop1.s: interop1.c
$(CCOMP) $(CCOMPFLAGS) -S interop1.c
-%.compcert: %.c $(CCOMP)
+%.compcert: %.c
$(CCOMP) $(CCOMPFLAGS) -o $*.compcert $*.c $(LIBS)
-%.s: %.c $(CCOMP)
+%.s: %.c
$(CCOMP) $(CCOMPFLAGS) -S $*.c
clean: