Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / sam / Makefile.rules
# ========== Copyright Header Begin ==========================================
#
# OpenSPARC T2 Processor File: Makefile.rules
# Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
#
# The above named program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License version 2 as published by the Free Software Foundation.
#
# The above named program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this work; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ========== Copyright Header End ============================================
#
# "@(#)1.1 06/04/24 Makefile.rules"
#
#
# for Sun Make predefined macros and rules see
# /usr/share/lib/make/make.rules
# it defines things like COMPILE.cc and LINK.cc
# -------- for compiling into an "$(OBJ_DIR)/" subdirectory --------
#
$(OBJ_DIR)/%.o: %.cc
@ $(TESTDIR) $(OBJ_DIR)
@echo
@echo compiling $@
@echo
$(COMPILE.cc) $< -o $@
@echo
$(OBJ_DIR)/%.o: %.c
@ $(TESTDIR) $(OBJ_DIR)
@echo
@echo compiling $@
@echo
$(COMPILE.c) $< -o $@
@echo
$(OBJ_DIR)/%.o: %.s
@ $(TESTDIR) $(OBJ_DIR)
@echo
@echo assembling $@
@echo
$(COMPILE.s) $< -o $@
@echo
# -------- for compiling into the current directory --------
#
.cc.o:
@echo
@echo compiling $@
@echo
$(COMPILE.cc) $< -o $@
@echo
.c.o:
@echo
@echo compiling $@
@echo
$(COMPILE.c) $< -o $@
@echo
.s.o:
@echo
@echo assembling $@
@echo
$(COMPILE.s) $< -o $@
@echo
# --------------------- import rules ------------------
$(LIB_DIR)/%:
$(TARGET_MKDIR)
cp -f $< $@
# --------------------- specials ------------------
FRC:
.KEEP_STATE:
# ------------------------- -=oOo=- ------------------------