2004-10-11 00:54:59 +00:00
|
|
|
##===- projects/Stacker/lib/Makefile -----------------------*- Makefile -*-===##
|
2003-11-23 18:06:37 +00:00
|
|
|
#
|
2004-10-11 00:54:59 +00:00
|
|
|
# Compile Stacker libraries
|
2003-11-23 18:06:37 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2004-09-04 19:48:50 +00:00
|
|
|
LEVEL = ..
|
2005-05-13 17:42:54 +00:00
|
|
|
DIRS = compiler runtime
|
2003-11-23 18:06:37 +00:00
|
|
|
|
2006-11-05 03:58:44 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2006-10-02 19:10:56 +00:00
|
|
|
# Don't generate the runtime if we don't have LLVMGCC
|
2006-11-05 03:58:44 +00:00
|
|
|
ifeq ($(strip $(LLVMGCC)),)
|
2006-10-02 19:10:56 +00:00
|
|
|
DIRS := $(filter-out runtime, $(DIRS))
|
|
|
|
endif
|
|
|
|
|