Okay, make the prose match the example too.
[oota-llvm.git] / projects / Stacker / Makefile.common.in
1 # Set the name of the project here
2 PROJECT_NAME := Stacker
3
4 # Set this variable to the top of the LLVM source tree.
5 LLVM_SRC_ROOT = @LLVM_SRC@
6
7 # 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).
9 LLVM_OBJ_ROOT = @LLVM_OBJ@
10
11 # Set the directory root of this project's source files
12 PROJ_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
13
14 # Set the root directory of this project's object files
15 PROJ_OBJ_ROOT := $(subst //,/,@abs_top_objdir@)
16
17 # Set the root directory of this project's install prefix
18 PROJ_INSTALL_ROOT := @prefix@
19
20 # Include LLVM's Master Makefile.
21 include $(LLVM_OBJ_ROOT)/Makefile.common