Use the "ASTLocation nomenclature" (instead of the ASTNode one) in index-test.cpp.
[clang.git] / Makefile
blob00e38d26de4692880c665e03066fa8101a3669cc
1 LEVEL = ../..
2 DIRS := include lib tools docs
4 include $(LEVEL)/Makefile.common
6 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
7 test::
8 $(Verb) if [ ! -f test/Makefile ]; then \
9 $(MKDIR) test; \
10 $(CP) $(PROJ_SRC_DIR)/test/Makefile test/Makefile; \
12 endif
14 test::
15 @ $(MAKE) -C test
17 report::
18 @ $(MAKE) -C test report
20 clean::
21 @ $(MAKE) -C test clean
23 tags::
24 $(Verb) etags `find . -type f -name \*.h | grep -v /lib/Headers | grep -v /test/` `find . -type f -name \*.cpp | grep -v /lib/Headers | grep -v /test/`
26 cscope.files:
27 find tools lib include -name '*.cpp' \
28 -or -name '*.def' \
29 -or -name '*.td' \
30 -or -name '*.h' > cscope.files
32 .PHONY: test report clean cscope.files