mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-13 17:20:28 +00:00
![Reid Spencer](/assets/img/avatar_default.png)
Be careful about blanks when checking LLVMGCC variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31455 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
395 B
Makefile
17 lines
395 B
Makefile
##===- projects/Stacker/lib/Makefile -----------------------*- Makefile -*-===##
|
|
#
|
|
# Compile Stacker libraries
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ..
|
|
DIRS = compiler runtime
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
# Don't generate the runtime if we don't have LLVMGCC
|
|
ifeq ($(strip $(LLVMGCC)),)
|
|
DIRS := $(filter-out runtime, $(DIRS))
|
|
endif
|
|
|