2003-10-21 00:26:57 +02:00
|
|
|
##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
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-11-07 01:38:09 +01:00
|
|
|
Sparc.burg.in1 : $(SourceDir)/Sparc.burg.in
|
2003-10-29 21:07:35 +01:00
|
|
|
$(CXX) -E -I$(LLVM_SRC_ROOT)/include $(DEBUG_FLAG) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/Ydefine/#define/' > $@
|
2003-09-06 16:50:22 +02:00
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
Sparc.burm : Sparc.burg.in1
|
2003-10-29 21:07:35 +01:00
|
|
|
$(CXX) -E -I$(LLVM_SRC_ROOT)/include $(DEBUG_FLAG) -x c++ $< | $(SED) '/^#/d' | $(SED) 's/^Xinclude/#include/' | $(SED) 's/^Xdefine/#define/' > $@
|
2003-09-06 16:50:22 +02:00
|
|
|
|
2003-09-09 22:57:03 +02:00
|
|
|
Sparc.burm.cpp: Sparc.burm
|
2003-11-07 18:26:27 +01:00
|
|
|
@echo "Burging `basename $<`"
|
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-11-07 01:38:09 +01:00
|
|
|
$(TARGET_NAME)CodeEmitter.inc:: $(SourceDir)/$(TARGET_NAME).td $(TABLEGEN_FILES) $(TBLGEN)
|
2003-11-07 18:26:27 +01:00
|
|
|
@echo "Tblgen'ing `basename $<`"
|
2003-09-10 16:10:44 +02:00
|
|
|
$(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
|
2003-07-30 07:49:17 +02:00
|
|
|
|
2003-05-29 05:32:49 +02:00
|
|
|
clean::
|
2003-10-29 21:07:35 +01:00
|
|
|
$(RM) -f $(TARGET_NAME)CodeEmitter.inc Sparc.burg.in1 Sparc.burm Sparc.burm.cpp
|
2003-09-09 22:57:03 +02:00
|
|
|
|