blob: 2b3025bd011e033776458b8f66ac724625f3268b [file] [log] [blame]
Reid Spencer6a8b5182005-01-16 02:21:42 +00001# Set the name of the project here
2PROJECT_NAME := sample
3PROJ_VERSION := 0.9
4
John Criswellcaca6ea2003-10-16 01:45:10 +00005# Set this variable to the top of the LLVM source tree.
John Criswellcaca6ea2003-10-16 01:45:10 +00006LLVM_SRC_ROOT = @LLVM_SRC@
7
John Criswellcaca6ea2003-10-16 01:45:10 +00008# Set this variable to the top level directory where LLVM was built
9# (this is *not* the same as OBJ_ROOT as defined in LLVM's Makefile.config).
John Criswellcaca6ea2003-10-16 01:45:10 +000010LLVM_OBJ_ROOT = @LLVM_OBJ@
11
Reid Spencer6a8b5182005-01-16 02:21:42 +000012# Set the directory root of this project's source files
13PROJ_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
14
15# Set the root directory of this project's object files
16PROJ_OBJ_ROOT := $(subst //,/,@abs_top_objdir@)
17
18# Set the root directory of this project's install prefix
19PROJ_INSTALL_ROOT := @prefix@
20
John Criswellcaca6ea2003-10-16 01:45:10 +000021# Include LLVM's Master Makefile.
Reid Spencer6a8b5182005-01-16 02:21:42 +000022include $(LLVM_OBJ_ROOT)/Makefile.common