1# Set the name of the project here 2PROJECT_NAME := sample 3PROJ_VERSION := 0.9 4 5# Set this variable to the top of the LLVM source tree. 6LLVM_SRC_ROOT = @LLVM_SRC@ 7 8# 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). 10LLVM_OBJ_ROOT = @LLVM_OBJ@ 11 12# 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 21# Include LLVM's Master Makefile. 22include $(LLVM_SRC_ROOT)/Makefile.common 23