You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
620 B
27 lines
620 B
20 years ago
|
#
|
||
|
# Makefile for generic Broadcom MIPS boards
|
||
|
#
|
||
|
# Copyright 2004, Broadcom Corporation
|
||
|
# All Rights Reserved.
|
||
|
#
|
||
|
# THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
|
||
|
# KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
|
||
|
# SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
|
||
|
# FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
|
||
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
|
||
|
.S.s:
|
||
|
$(CPP) $(AFLAGS) $< -o $*.s
|
||
|
.S.o:
|
||
|
$(CC) $(AFLAGS) -c $< -o $*.o
|
||
|
|
||
|
O_TARGET := brcm.o
|
||
|
|
||
|
obj-y := int-handler.o irq.o
|
||
|
|
||
|
obj-$(CONFIG_REMOTE_DEBUG) += gdb_hook.o
|
||
|
|
||
|
include $(TOPDIR)/Rules.make
|