summaryrefslogtreecommitdiff
path: root/test/manual/cedet/tests/test.mk
blob: edea97e7b9855079e230304e6b164aabad87ee1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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