1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Don't build examples by default, use BUILD_EXAMPLES=1 to build them. The only utility of this is testing that we keep the examples up to date, I will just make the buildbots run with this flag.

llvm-svn: 88979
This commit is contained in:
Daniel Dunbar 2009-11-16 22:38:00 +00:00
parent 3a89c01296
commit f3784a8781

View File

@ -32,7 +32,11 @@ ifeq ($(BUILD_DIRS_ONLY),1)
else
DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \
tools runtime docs unittests
OPTIONAL_DIRS := examples projects bindings
OPTIONAL_DIRS := projects bindings
endif
ifeq ($(BUILD_EXAMPLES),1)
OPTIONAL_DIRS += examples
endif
EXTRA_DIST := test unittests llvm.spec include win32 Xcode