mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Simplify some rules
Move LGCCLDPROG from test/Makefile.tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10256 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f6968f3886
commit
eefa3d3cfb
@ -246,6 +246,7 @@ endif
|
||||
BURG := $(LLVMTOOLCURRENT)/burg
|
||||
RunBurg := $(BURG) $(BURG_OPTS)
|
||||
TBLGEN := $(LLVMTOOLCURRENT)/tblgen
|
||||
LGCCLDPROG := $(LLVMTOOLCURRENT)/gccld
|
||||
|
||||
#--------------------------------------------------------------------------
|
||||
# The LLVM GCC front-end in C and C++ flavors
|
||||
@ -374,11 +375,10 @@ endif
|
||||
# Libtool Objects
|
||||
#
|
||||
Srcs := $(sort $(basename $(Source)))
|
||||
Objs := $(addsuffix .lo, $(Srcs))
|
||||
ObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(Objs))
|
||||
ObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(Objs))
|
||||
ObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(Objs))
|
||||
ObjectsBC := $(addprefix $(BUILD_OBJ_DIR)/BytecodeObj/,$(addsuffix .bc, $(Srcs)))
|
||||
ObjectsO := $(Srcs:%=$(BUILD_OBJ_DIR)/Release/%.lo)
|
||||
ObjectsP := $(Srcs:%=$(BUILD_OBJ_DIR)/Profile/%.lo)
|
||||
ObjectsG := $(Srcs:%=$(BUILD_OBJ_DIR)/Debug/%.lo)
|
||||
ObjectsBC := $(Srcs:%=$(BUILD_OBJ_DIR)/BytecodeObj/%.bc)
|
||||
|
||||
#
|
||||
# The real objects underlying the libtool objects
|
||||
|
Loading…
Reference in New Issue
Block a user