aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/monniaux/complex/Makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/test/monniaux/complex/Makefile b/test/monniaux/complex/Makefile
index c92f5211..b0dca135 100644
--- a/test/monniaux/complex/Makefile
+++ b/test/monniaux/complex/Makefile
@@ -8,8 +8,17 @@ all: $(PRODUCTS)
complex_mat.gcc.host.s complex_mat.ccomp.host.s complex_mat.gcc.k1c.s complex_mat.ccomp.k1c.s : ../clock.h
-complex_mat.gcc.host complex_mat.ccomp.host : ../clock.gcc.host.o
-complex_mat.gcc.k1c complex_mat.ccomp.k1c : ../clock.gcc.k1c.o
+complex_mat.ccomp.host: complex_mat.ccomp.host.o ../clock.gcc.host.o
+ $(CCOMP) $(CCOMPFLAGS) $+ -o $@
+
+complex_mat.gcc.host: complex_mat.gcc.host.o ../clock.gcc.host.o
+ $(CC) $(CFLAGS) $+ -o $@
+
+complex_mat.gcc.k1c: complex_mat.gcc.k1c.o ../clock.gcc.k1c.o
+ $(K1C_CC) $(K1C_CFLAGS) $+ -o $@
+
+complex_mat.ccomp.k1c: complex_mat.ccomp.k1c.o ../clock.gcc.k1c.o
+ $(K1C_CCOMP) $(K1C_CCOMPFLAGS) $+ -o $@
clean:
-rm -f *.o *.s *.k1c