From 03f2891a533dccbd8e4b5ba58a734fee79f1dd06 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Thu, 14 Mar 2019 15:07:32 +0100 Subject: le Makefile passe --- test/monniaux/complex/Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'test/monniaux/complex') 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 -- cgit