1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00
emacs/test/manual/cedet/tests/test.mk
Eric Ludlam 0f7163ab89 * test/manual/cedet/tests/: New files for semantic-utest-ia.el
* 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>
2019-10-31 19:01:08 -04:00

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