mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 19:31:02 -08:00
* test/manual/cedet/tests/test.mk, test/manual/cedet/tests/test.srt, test/manual/cedet/tests/test.texi, test/manual/cedet/tests/testlocalvars.cpp, test/manual/cedet/tests/teststruct.cpp, test/manual/cedet/tests/testtemplates.cpp, test/manual/cedet/tests/testusing.cpp, test/manual/cedet/tests/testusing.hh, test/manual/cedet/tests/testvarnames.java. test/manual/cedet/tests/testwisent.wy: New files to be used by test/lisp/cedet/semantic-utest-ia.el. Author: Eric Ludlam <zappo@gnu.org>
18 lines
344 B
Makefile
18 lines
344 B
Makefile
# 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
|