mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
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:
parent
90c7d67b9d
commit
9b94701fdf
@ -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))
|
||||
|
||||
|
||||
#---------------------------------------------------------
|
||||
|
@ -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))
|
||||
|
||||
|
||||
#---------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user