2001-09-14 05:55:11 +02:00
|
|
|
LEVEL = ../../..
|
2001-09-14 05:47:57 +02:00
|
|
|
LIBRARYNAME = sparc
|
2002-09-23 15:12:28 +02:00
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
ExtraSource = Sparc.burm.cpp
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2002-09-23 15:12:28 +02:00
|
|
|
ifdef ENABLE_OPTIMIZED
|
|
|
|
DEBUG_FLAG =
|
|
|
|
else
|
|
|
|
DEBUG_FLAG = -D_DEBUG
|
|
|
|
endif
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
Sparc.burg.in1 : Sparc.burg.in
|
2003-09-06 16:50:22 +02:00
|
|
|
$(CXX) -E -I$(LLVM_SRC_ROOT)/include $(DEBUG_FLAG) -x c++ $< | ${SED} '/^# /d' | ${SED} 's/Ydefine/#define/' > $@
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
Sparc.burm : Sparc.burg.in1
|
2003-09-06 16:50:22 +02:00
|
|
|
$(CXX) -E -I$(LLVM_SRC_ROOT)/include $(DEBUG_FLAG) -x c++ $< | ${SED} '/^# /d' | ${SED} 's/Xinclude/#include/g' | ${SED} 's/Xdefine/#define/g' > $@
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
Sparc.burm.cpp: Sparc.burm
|
|
|
|
@echo "Burging $<"
|
2002-07-25 08:08:32 +02:00
|
|
|
$(RunBurg) $< -o $@
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
$(BUILD_OBJ_DIR)/Debug/Sparc.burm.lo: Sparc.burm.cpp
|
2002-07-25 08:08:32 +02:00
|
|
|
$(CompileG) $< -o $@
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
$(BUILD_OBJ_DIR)/Release/Sparc.burm.lo: Sparc.burm.cpp
|
2002-09-23 15:12:28 +02:00
|
|
|
$(CompileO) $< -o $@
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
$(BUILD_OBJ_DIR)/Profile/Sparc.burm.lo: Sparc.burm.cpp
|
2002-09-23 15:12:28 +02:00
|
|
|
$(CompileP) $< -o $@
|
|
|
|
|
2003-06-11 15:49:11 +02:00
|
|
|
$(BUILD_OBJ_DIR)/Depend/Sparc.burm.d: $(BUILD_OBJ_DIR)/Depend/.dir
|
2002-05-21 17:58:24 +02:00
|
|
|
touch $@
|
|
|
|
|
2003-07-30 07:49:17 +02:00
|
|
|
TARGET_NAME := SparcV9
|
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
TABLEGEN_FILES := $(notdir $(wildcard $(SourceDir)/*.td))
|
2003-09-06 16:50:22 +02:00
|
|
|
|
2003-09-10 16:10:44 +02:00
|
|
|
$(TARGET_NAME)CodeEmitter.cpp:: $(TARGET_NAME)CodeEmitter.inc
|
2003-07-30 07:49:17 +02:00
|
|
|
|
2003-09-10 16:10:44 +02:00
|
|
|
$(TARGET_NAME)CodeEmitter.inc:: $(TARGET_NAME).td $(TABLEGEN_FILES) $(TBLGEN)
|
|
|
|
@echo "Tblgen'ing $<"
|
|
|
|
$(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
|
2003-07-30 07:49:17 +02:00
|
|
|
|
2003-05-29 05:32:49 +02:00
|
|
|
clean::
|
2003-09-09 22:57:03 +02:00
|
|
|
${RM} -f $(TARGET_NAME)CodeEmitter.inc Sparc.burg.in1 Sparc.burm Sparc.burm.cpp
|
|
|
|
|