aboutsummaryrefslogtreecommitdiffstats
path: root/projects/Stacker/lib/Makefile
blob: bee436b83fb5eb75bcdbd010b9fbdd81f29df041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
##===- projects/Stacker/lib/Makefile -----------------------*- Makefile -*-===##
#
# Compile Stacker libraries
#
##===----------------------------------------------------------------------===##

LEVEL = ..
DIRS = compiler runtime

# Don't generate the runtime if we don't have LLVMGCC
ifeq ($(LLVMGCC),)
  DIRS := $(filter-out runtime, $(DIRS))
endif

include $(LEVEL)/Makefile.common