summaryrefslogtreecommitdiff
path: root/test/lisp/cedet/semantic-utest-ia-resources/test.mk
diff options
context:
space:
mode:
Diffstat (limited to 'test/lisp/cedet/semantic-utest-ia-resources/test.mk')
-rw-r--r--test/lisp/cedet/semantic-utest-ia-resources/test.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/test.mk b/test/lisp/cedet/semantic-utest-ia-resources/test.mk
new file mode 100644
index 00000000000..edea97e7b98
--- /dev/null
+++ b/test/lisp/cedet/semantic-utest-ia-resources/test.mk
@@ -0,0 +1,18 @@
+# A Test Makefile. -*-makefile-*-
+
+# This test is for a file in this test directory. Just a random one.
+FILES=testdoub # -1-
+# #1# ("testdoublens.cpp" "testdoublens.hpp" )
+
+all: optional
+
+# This one completes on a variable name.
+optional: $FIL # -2-
+ # #2# ("FILES")
+ compile $@
+
+notoptional: opt # -3-
+ # #3# ("optional")
+ echo "Done."
+
+#end