From b0e23628f95845591f8ce697784beda13e3cf640 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Fri, 15 Feb 2019 21:50:45 +0100 Subject: double matrix multiplication --- test/monniaux/float_mat/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/monniaux/float_mat/Makefile (limited to 'test/monniaux/float_mat/Makefile') diff --git a/test/monniaux/float_mat/Makefile b/test/monniaux/float_mat/Makefile new file mode 100644 index 00000000..0b66010a --- /dev/null +++ b/test/monniaux/float_mat/Makefile @@ -0,0 +1,21 @@ +include ../rules.mk + +PRODUCTS=float_mat.host float_mat.gcc.k1c.out float_mat.ccomp.k1c.out float_mat.ccomp.k1c.s float_mat.gcc.k1c.s float_mat.gcc.k1c float_mat.ccomp.k1c + +all: $(PRODUCTS) + +float_mat.host: float_mat.c float_mat_run.c float_mat.h + $(CC) $(CFLAGS) float_mat.c float_mat_run.c -o $@ + +float_mat.gcc.k1c.s float_mat.ccomp.k1c.s float_mat_run.gcc.k1c.s: float_mat.h + +float_mat.gcc.k1c: float_mat.gcc.k1c.o float_mat_run.gcc.k1c.o + $(K1C_CC) $(K1C_CFLAGS) $+ -o $@ + +float_mat.ccomp.k1c: float_mat.ccomp.k1c.o float_mat_run.gcc.k1c.o + $(K1C_CCOMP) $(K1C_CCOMPFLAGS) $+ -o $@ + +clean: + $(RM) -f $(PRODUCTS) float_mat.gcc.k1c.o float_mat.ccomp.k1c.o float_mat_run.gcc.k1c.o + +.PHONY: clean -- cgit