From: Eric Ludlam Date: Sat, 11 Apr 2015 23:18:47 +0000 (-0400) Subject: New tests. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9cd8048dd7b8e2a0639b2656a80b8f9fb974c99;p=emacs.git New tests. --- diff --git a/test/manual/cedet/cedet/semantic/tests/test.mk b/test/manual/cedet/cedet/semantic/tests/test.mk new file mode 100644 index 00000000000..edea97e7b98 --- /dev/null +++ b/test/manual/cedet/cedet/semantic/tests/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