Don't check variables before they are set.
[oota-llvm.git] / projects / Stacker / lib / Makefile
1 ##===- projects/Stacker/lib/Makefile -----------------------*- Makefile -*-===##
2 #
3 # Compile Stacker libraries
4 #
5 ##===----------------------------------------------------------------------===##
6
7 LEVEL = ..
8 DIRS = compiler runtime
9
10 include $(LEVEL)/Makefile.common
11
12 # Don't generate the runtime if we don't have LLVMGCC
13 ifeq ($(strip $(LLVMGCC)),)
14   DIRS := $(filter-out runtime, $(DIRS))
15 endif
16