Remove the projects/Stacker directory. LLVM is now free of dependency on llvm-gcc. llvm-svn: 33278
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
|
|
|