54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
|
#
|
||
|
# Copyright 2017 Broadcom
|
||
|
#
|
||
|
# This 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 "GPL").
|
||
|
#
|
||
|
# This 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 version 2 (GPLv2) for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# version 2 (GPLv2) along with this source code.
|
||
|
#
|
||
|
# $Id: Makefile.linux-raptor,v 1.6 Broadcom SDK $
|
||
|
# $Copyright: (c) 2005 Broadcom Corp.
|
||
|
# All Rights Reserved.$
|
||
|
|
||
|
# Look for custom tools
|
||
|
ifneq (,$(MIPS_TOOLS_DIR))
|
||
|
override PATH := $(MIPS_TOOLS_DIR):$(PATH)
|
||
|
endif
|
||
|
ifneq (,$(MIPS_CROSS_COMPILE))
|
||
|
override CROSS_COMPILE := $(MIPS_CROSS_COMPILE)
|
||
|
endif
|
||
|
|
||
|
# Default tools
|
||
|
ifeq (,$(CROSS_COMPILE))
|
||
|
CROSS_COMPILE := mips_fp_be-
|
||
|
override PATH := $(PATH):/projects/ntsw-tools/linux/mvista/mvista-3.1/pro/devkit/mips/fp_be/bin
|
||
|
endif
|
||
|
|
||
|
# Default Linux include directory
|
||
|
ifeq (,$(LINUX_INCLUDE))
|
||
|
LINUX_INCLUDE = /projects/ntsw-tools/linux/headers/mvl-3.1-raptor/include
|
||
|
endif
|
||
|
|
||
|
CFGFLAGS += -DSYS_BE_PIO=0 -DSYS_BE_PACKET=1 -DSYS_BE_OTHER=0 -DBCM_ICS
|
||
|
ENDIAN = BE_HOST=1
|
||
|
CFGFLAGS += -D$(ENDIAN)
|
||
|
CFGFLAGS += -DBCM_PLATFORM_STRING=\"Raptor_BCM56218\"
|
||
|
|
||
|
|
||
|
ifneq ($(targetplat),user)
|
||
|
include ${SDK}/make/Makefile.linux-kernel
|
||
|
endif
|
||
|
|
||
|
# From linux/arch/mips/Makefile
|
||
|
|
||
|
ifeq (,$(KFLAGS))
|
||
|
KFLAGS := -D__KERNEL__ -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 -mno-abicalls -fno-pic -pipe -m$(gcc-tune-flag)=r4600 -mips2 -Wa,--trap -mlong-calls
|
||
|
endif
|