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
This commit is contained in:
Chris Lattner 2002-09-19 19:42:24 +00:00
parent 90c7d67b9d
commit 9b94701fdf
2 changed files with 16 additions and 8 deletions

View File

@ -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))
#---------------------------------------------------------

View File

@ -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))
#---------------------------------------------------------