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/bitsliced-tea/Makefile | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 test/monniaux/bitsliced-tea/Makefile (limited to 'test/monniaux/bitsliced-tea/Makefile') diff --git a/test/monniaux/bitsliced-tea/Makefile b/test/monniaux/bitsliced-tea/Makefile deleted file mode 100644 index 3d5fd540..00000000 --- a/test/monniaux/bitsliced-tea/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -include ../rules.mk - -PRODUCTS=bstea.gcc.host.out bstea.ccomp.host.out bstea.gcc.o1.k1c.out bstea.gcc.k1c.out bstea.ccomp.k1c.out bstea.ccomp.k1c.s bstea.gcc.k1c.s bstea.gcc.k1c bstea.ccomp.k1c bstea.gcc.host bstea.ccomp.host - -all: $(PRODUCTS) - -bstea.gcc.host: bstea.c bstea_run.c bstea.h ../clock.o - $(CC) $(CFLAGS) bstea.c bstea_run.c ../clock.o -o $@ - -bstea.ccomp.host: bstea.c bstea_run.c bstea.h ../clock.o - $(CCOMP) $(CCOMPFLAGS) bstea.c bstea_run.c ../clock.o -o $@ - -bstea.gcc.k1c.s bstea.ccomp.k1c.s bstea_run.gcc.k1c.s: bstea.h - -bstea.gcc.k1c: bstea.gcc.k1c.o bstea_run.gcc.k1c.o ../clock.gcc.k1c.o - $(K1C_CC) $(K1C_CFLAGS) $+ -o $@ - -bstea.gcc.o1.k1c: bstea.gcc.o1.k1c.o bstea_run.gcc.o1.k1c.o ../clock.gcc.k1c.o - $(K1C_CC) $(K1C_CFLAGS_O1) $+ -o $@ - -bstea.ccomp.k1c: bstea.ccomp.k1c.o bstea_run.gcc.k1c.o ../clock.gcc.k1c.o - $(K1C_CCOMP) $(K1C_CCOMPFLAGS) $+ -o $@ - -clean: - $(RM) -f *.k1c *.host *.out *.o *.s - -.PHONY: clean -- cgit