aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug22868/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug22868/Makefile')
-rw-r--r--testsuite/gna/bug22868/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/bug22868/Makefile b/testsuite/gna/bug22868/Makefile
new file mode 100644
index 000000000..328c08c6b
--- /dev/null
+++ b/testsuite/gna/bug22868/Makefile
@@ -0,0 +1,15 @@
+.PHONY: default
+default:
+ -make works.o
+ -make fails1.o
+ -make fails2.o
+
+
+%.o: %.vhdl
+ ghdl -a $<
+
+.PHONY: clean
+clean:
+ ghdl --clean
+ rm *.cf
+