]> git.eshelyaron.com Git - emacs.git/commitdiff
New tests.
authorEric Ludlam <eric@siege-engine.com>
Sat, 11 Apr 2015 23:18:47 +0000 (19:18 -0400)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 18:13:42 +0000 (20:13 +0200)
test/manual/cedet/cedet/semantic/tests/test.mk [new file with mode: 0644]

diff --git a/test/manual/cedet/cedet/semantic/tests/test.mk b/test/manual/cedet/cedet/semantic/tests/test.mk
new file mode 100644 (file)
index 0000000..edea97e
--- /dev/null
@@ -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