From 11c5cc2ce59fe68959fe424fc04d4e947432abcb Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 9 Oct 2021 14:31:14 +0100 Subject: Fix some of the testing in Makefile --- test/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index f161386..9413c70 100644 --- a/test/Makefile +++ b/test/Makefile @@ -12,13 +12,13 @@ all: $(TESTS) @./$< ; echo "$$?" >$@ %.o: %.c - @$(CC) $(CFLAGS) -c $< -o $@ + @$(CC) $(CFLAGS) -c -o $@ $< %.gcc: %.o - @$(CC) $(CFLAGS) $< -o $@ + @$(CC) $(CFLAGS) -o $@ $< %.v: %.c - @$(VERICERT) $(VERICERT_OPTS) $< -o $@ + @$(VERICERT) $(VERICERT_OPTS) -o $@ $< %.iver: %.v @$(IVERILOG) $(IVERILOG_OPTS) -o $@ -- $< -- cgit