aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/mod_int_mat
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-01-19 13:21:49 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-01-19 13:21:49 +0100
commitcaa53a3dce35e53ed913557f30aef1f063cf67c0 (patch)
tree1f3269ed5829ac2b66aa5bb72653fea1184a5144 /test/monniaux/mod_int_mat
parent91c23dece6e83c1b6566530ecf9467e091934474 (diff)
downloadcompcert-kvx-caa53a3dce35e53ed913557f30aef1f063cf67c0.tar.gz
compcert-kvx-caa53a3dce35e53ed913557f30aef1f063cf67c0.zip
fixes in Makefile
Diffstat (limited to 'test/monniaux/mod_int_mat')
-rw-r--r--test/monniaux/mod_int_mat/Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/monniaux/mod_int_mat/Makefile b/test/monniaux/mod_int_mat/Makefile
index 912d016b..b285c03c 100644
--- a/test/monniaux/mod_int_mat/Makefile
+++ b/test/monniaux/mod_int_mat/Makefile
@@ -14,22 +14,16 @@ all: $(PRODUCTS)
%.gcc.k1c.o: %.gcc.k1c.s
$(K1C_CC) $(K1C_CFLAGS) -c $< -o $@
-%.gcc.k1c.o: %.gcc.k1c.c
- $(K1C_CC) $(K1C_CFLAGS) -c $< -o $@
-
%.ccomp.k1c.s: %.c
$(K1C_CCOMP) $(K1C_CCOMPFLAGS) -S $< -o $@
%.ccomp.k1c.o: %.ccomp.k1c.s
$(K1C_CCOMP) $(K1C_CCOMPFLAGS) -c $< -o $@
-%.ccomp.k1c.o: %.ccomp.k1c.c
- $(K1C_CCOMP) $(K1C_CCOMPFLAGS) -c $< -o $@
-
int_mat.host: int_mat.c int_mat_run.c modint.h
$(CC) $(CFLAGS) int_mat.c int_mat_run.c -o $@
-int_mat.gcc.k1c.s int_mat.ccomp.k1c.s: modint.h
+int_mat.gcc.k1c.s int_mat.ccomp.k1c.s int_mat_run.gcc.k1c.s: modint.h
int_mat.gcc.k1c: int_mat.gcc.k1c.o int_mat_run.gcc.k1c.o
$(K1C_CC) $(K1C_CFLAGS) $+ -o $@