Reid Spencer | 6a8b518 | 2005-01-16 02:21:42 +0000 | [diff] [blame] | 1 | # Set the name of the project here |
| 2 | PROJECT_NAME := Stacker |
| 3 | |
Reid Spencer | 820dab7 | 2004-09-04 19:48:50 +0000 | [diff] [blame] | 4 | # Set this variable to the top of the LLVM source tree. |
Reid Spencer | 820dab7 | 2004-09-04 19:48:50 +0000 | [diff] [blame] | 5 | LLVM_SRC_ROOT = @LLVM_SRC@ |
| 6 | |
Reid Spencer | 820dab7 | 2004-09-04 19:48:50 +0000 | [diff] [blame] | 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). |
Reid Spencer | 820dab7 | 2004-09-04 19:48:50 +0000 | [diff] [blame] | 9 | LLVM_OBJ_ROOT = @LLVM_OBJ@ |
| 10 | |
Reid Spencer | 6a8b518 | 2005-01-16 02:21:42 +0000 | [diff] [blame] | 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 | |
Reid Spencer | 820dab7 | 2004-09-04 19:48:50 +0000 | [diff] [blame] | 20 | # Include LLVM's Master Makefile. |
Reid Spencer | 6a8b518 | 2005-01-16 02:21:42 +0000 | [diff] [blame] | 21 | include $(LLVM_OBJ_ROOT)/Makefile.common |