1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Don't build runtime if tools-only :)

llvm-svn: 21938
This commit is contained in:
Reid Spencer 2005-05-13 16:17:58 +00:00
parent 5f65574a0f
commit 47d216c0b3

View File

@ -5,6 +5,9 @@
##===----------------------------------------------------------------------===##
LEVEL = ..
DIRS = compiler runtime
DIRS = compiler
ifneq ($(MAKECMDGOALS),tools-only)
DIRS += runtime
endif
include $(LEVEL)/Makefile.common