зеркало из https://github.com/microsoft/clang-1.git
24 строки
382 B
Makefile
24 строки
382 B
Makefile
LEVEL = ../..
|
|
DIRS := lib Driver docs tools
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
|
|
test::
|
|
$(Verb) if [ ! -f test/Makefile ]; then \
|
|
$(MKDIR) test; \
|
|
$(CP) $(PROJ_SRC_DIR)/test/Makefile test/Makefile; \
|
|
fi
|
|
endif
|
|
|
|
test::
|
|
@ $(MAKE) -C test
|
|
|
|
report::
|
|
@ $(MAKE) -C test report
|
|
|
|
clean::
|
|
@ $(MAKE) -C test clean
|
|
|
|
.PHONY: test report clean
|