summaryrefslogtreecommitdiff
path: root/projects/Stacker/lib/Makefile
blob: 3a9a470a108185155489efa0a1498dacf6b42e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
##===- 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