blob: 6620f5b4d86e5d79e501e63afd10f6d10c96e188 [file] [log] [blame]
Reid Spencer6a8b5182005-01-16 02:21:42 +00001# Set the name of the project here
2PROJECT_NAME := Stacker
3
Reid Spencer820dab72004-09-04 19:48:50 +00004# Set this variable to the top of the LLVM source tree.
Reid Spencer820dab72004-09-04 19:48:50 +00005LLVM_SRC_ROOT = @LLVM_SRC@
6
Reid Spencer820dab72004-09-04 19:48:50 +00007# Set this variable to the top level directory where LLVM was built
8# (this is *not* the same as OBJ_ROOT as defined in LLVM's Makefile.config).
Reid Spencer820dab72004-09-04 19:48:50 +00009LLVM_OBJ_ROOT = @LLVM_OBJ@
10
Reid Spencer6a8b5182005-01-16 02:21:42 +000011# Set the directory root of this project's source files
12PROJ_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
13
14# Set the root directory of this project's object files
15PROJ_OBJ_ROOT := $(subst //,/,@abs_top_objdir@)
16
17# Set the root directory of this project's install prefix
18PROJ_INSTALL_ROOT := @prefix@
19
Reid Spencer820dab72004-09-04 19:48:50 +000020# Include LLVM's Master Makefile.
Reid Spencer6a8b5182005-01-16 02:21:42 +000021include $(LLVM_OBJ_ROOT)/Makefile.common