aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/volatile
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-03-10 14:13:40 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-03-10 14:13:40 +0100
commitdfc45ce62e26a776366b1e7c5e5e068756073008 (patch)
treeeeb188357ebd0a617ec217f3614c65dd27f501cd /test/monniaux/volatile
parent873130bbd3343946bbd479c871589ae9494e26f3 (diff)
downloadcompcert-kvx-dfc45ce62e26a776366b1e7c5e5e068756073008.tar.gz
compcert-kvx-dfc45ce62e26a776366b1e7c5e5e068756073008.zip
varargs
Diffstat (limited to 'test/monniaux/volatile')
-rw-r--r--test/monniaux/volatile/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/monniaux/volatile/Makefile b/test/monniaux/volatile/Makefile
deleted file mode 100644
index 0234b02a..00000000
--- a/test/monniaux/volatile/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-all: volatile.ccomp.k1c volatile.gcc.k1c
-
-volatile.ccomp.k1c : volatile.ccomp.k1c.s
- k1-cos-gcc $< -o $@
-
-volatile.gcc.k1c : volatile.gcc.k1c.s
- k1-cos-gcc $< -o $@
-
-volatile.ccomp.k1c.s : volatile.c
- ../../../ccomp -O2 -Wall -Wno-c11-extensions -S $< -o $@
-
-volatile.gcc.k1c.s : volatile.c
- k1-cos-gcc -O2 -Wall -Werror=implicit -std=gnu99 -S $< -o $@
-
-clean:
- -rm -f *.k1c *.s
-
-.PHONY: clean