From 5fbc0af7e902bacafb5c77a0f523eb4b36198dea Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 11 Sep 2017 16:11:39 +0200 Subject: 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 --- test/regression/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/regression') 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: -- cgit