From 9b94701fdfcbdf23b0e3c55c1b9de4344161b150 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 19 Sep 2002 19:42:24 +0000 Subject: Move the burg option out of Makefile.config into Makefile.common since it no longer needs to be configured. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3828 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.common | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile.common') diff --git a/Makefile.common b/Makefile.common index 20e2979b63..41afc1aa1e 100644 --- a/Makefile.common +++ b/Makefile.common @@ -121,8 +121,12 @@ endif # Compilation options... #--------------------------------------------------------- -# Special tools used while building -RunBurg := $(BURG) $(BURG_OPTS) +# Special tools used while building the LLVM tree. Burg is built as part of the +# utils directory. +# +BURG := $(LEVEL)/utils/Burg/burg +RunBurg := $(BURG) $(BURG_OPTS) + # Enable this for profiling support with 'gprof' ifdef ENABLE_PROFILING @@ -181,8 +185,8 @@ AR = ar cq Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l) Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source))))) -ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs))) -ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) +ObjectsO := $(addprefix $(BUILD_ROOT)/Release/,$(Objs))) +ObjectsG := $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) #--------------------------------------------------------- -- cgit v1.2.3