aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Makefile6
1 files 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 $@ -- $<