From 76abb605749d1b8ddcc842cecb258fa755d63ccf Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Tue, 14 May 2019 18:01:28 +0200 Subject: Avancement sur la génération de Makefile des benchmarks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/monniaux/heapsort/Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 test/monniaux/heapsort/Makefile (limited to 'test/monniaux/heapsort/Makefile') diff --git a/test/monniaux/heapsort/Makefile b/test/monniaux/heapsort/Makefile deleted file mode 100644 index 74eb1dea..00000000 --- a/test/monniaux/heapsort/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -include ../rules.mk - -PRODUCTS=heapsort.gcc.host.out heapsort.ccomp.host.out heapsort.gcc.o1.k1c.out heapsort.gcc.k1c.out heapsort.ccomp.k1c.out heapsort.ccomp.k1c.s heapsort.gcc.k1c.s heapsort.gcc.k1c heapsort.ccomp.k1c - -all: $(PRODUCTS) - -heapsort.gcc.host: heapsort.c heapsort_run.gcc.host.o heapsort.h - $(CC) $(CFLAGS) heapsort.c heapsort_run.gcc.host.o -o $@ - -heapsort.ccomp.host: heapsort.c heapsort_run.gcc.host.o heapsort.h - $(CCOMP) $(CCOMPFLAGS) heapsort.c heapsort_run.gcc.host.o -o $@ - -heapsort.gcc.k1c.s heapsort.ccomp.k1c.s heapsort_run.gcc.k1c.s: heapsort.h - -heapsort.gcc.o1.k1c: heapsort.gcc.o1.k1c.o heapsort_run.gcc.o1.k1c.o - $(K1C_CC) $(K1C_CFLAGS_O1) $+ -o $@ - -heapsort.gcc.k1c: heapsort.gcc.k1c.o heapsort_run.gcc.k1c.o - $(K1C_CC) $(K1C_CFLAGS) $+ -o $@ - -heapsort.ccomp.k1c: heapsort.ccomp.k1c.o heapsort_run.gcc.k1c.o - $(K1C_CCOMP) $(K1C_CCOMPFLAGS) $+ -o $@ - -%.k1c.out: %.k1c - k1-cluster --cycle-based -- $< | tee $@ - -clean: - $(RM) -f $(PRODUCTS) heapsort.gcc.k1c.o heapsort.ccomp.k1c.o heapsort_run.gcc.k1c.o heapsort_run.gcc.k1c.s - -.PHONY: clean -- cgit