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.
208 lines
5.2 KiB
208 lines
5.2 KiB
# $Id: Makefile.IT8172,v 1.1.1.1 2006/09/14 01:59:09 root Exp $
|
|
#
|
|
# Makefile for PMON2000 IT8172
|
|
#
|
|
# This makefile is constructed from a machine description:
|
|
# config machineid
|
|
# Most changes should be made in the machine description
|
|
# /sys/arch/pmonppc/conf/``machineid''
|
|
# after which you should do
|
|
# config machineid
|
|
# Machine generic makefile changes should be made in
|
|
# /sys/arch/pmonppc/conf/Makefile.pmonppc
|
|
# after which config should be rerun for all machines of that type.
|
|
#
|
|
# N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE
|
|
# IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING
|
|
#
|
|
.SUFFIXES: .S .c .o
|
|
|
|
CROSS_COMPILE =mips-elf-
|
|
|
|
#
|
|
# Include the make variables (CC, etc...)
|
|
#
|
|
|
|
AS = $(CROSS_COMPILE)as
|
|
LD = $(CROSS_COMPILE)ld
|
|
CC = $(CROSS_COMPILE)gcc
|
|
CPP = $(CC) -E
|
|
AR = $(CROSS_COMPILE)ar
|
|
NM = $(CROSS_COMPILE)nm
|
|
STRIP = $(CROSS_COMPILE)strip
|
|
OBJCOPY = $(CROSS_COMPILE)objcopy
|
|
OBJDUMP = $(CROSS_COMPILE)objdump
|
|
RANLIB = $(CROSS_COMPILE)ranlib
|
|
SIZE = $(CROSS_COMPILE)size
|
|
|
|
OPT?= -O2
|
|
|
|
all: pmon
|
|
|
|
# source tree is located via $S relative to the compilation directory
|
|
ifndef S
|
|
S:=$(shell cd ../../../..; pwd)
|
|
endif
|
|
|
|
# Defines
|
|
|
|
TARGET= ${S}/Targets/IT8172
|
|
MACHINE=mips
|
|
MACHINE_ARCH=mips
|
|
COMPILEDIR=${shell pwd}
|
|
OBJDIR=${COMPILEDIR}
|
|
PMONDIR=${S}
|
|
|
|
|
|
INCLUDES= -I. -I${S}/include -I./machine -I${S} \
|
|
-I${S}/x86emu/int10/x86emu/include -I${S}/x86emu/int10/x86emu/src/x86emu/x86emu \
|
|
-I${S}/sys/arch/${MACHINE}/include -I${S}/sys \
|
|
-I${TARGET} -I${COMPILEDIR} -nostdinc
|
|
CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -D__OpenBSD__ -DPMON -D__PMON__\
|
|
-${ENDIAN} -mno-abicalls -mips3 -mcpu=r4000
|
|
CWARNFLAGS= -Wall -Wstrict-prototypes \
|
|
-Wno-uninitialized -Wno-format -Wno-main
|
|
CFLAGS= ${DEBUG} ${CWARNFLAGS} ${OPT} -G 0
|
|
AFLAGS= -D_LOCORE -G 0
|
|
LFLAGS= -${ENDIAN} -N -G 0 -T../../conf/ld.script -e start
|
|
STRIPFLAGS= -g -S --strip-debug
|
|
|
|
HOSTCC?= ${CC}
|
|
HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
|
|
HOSTED_CFLAGS= ${CFLAGS}
|
|
|
|
include ${S}/lib/libc/Makefile.inc
|
|
LIBC=${CLIB}
|
|
|
|
#include ${S}/lib/libz/Makefile.inc
|
|
#LIBZ=${ZLIB}
|
|
|
|
# compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP}
|
|
# where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix,
|
|
# capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file
|
|
# is marked as config-dependent.
|
|
|
|
USRLAND_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
|
|
USRLAND_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
|
|
|
|
NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
|
|
NORMAL_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
|
|
|
|
DRIVER_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
|
|
DRIVER_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
|
|
|
|
NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $<
|
|
IMAGE_S= ${CC} ${AFLAGS} -DPMON_ENTRY=0x80020000 ${CPPFLAGS} -c $<
|
|
NORMAL_S_C= ${AS} ${COPTS} ${PARAM} $< -o $@
|
|
|
|
|
|
%OBJS
|
|
|
|
%CFILES
|
|
|
|
%SFILES
|
|
|
|
# load lines for config "xxx" will be emitted as:
|
|
# xxx: ${SYSTEM_DEP}
|
|
# ${SYSTEM_LD_HEAD}
|
|
# ${SYSTEM_LD}
|
|
# ${SYSTEM_LD_TAIL}
|
|
SYSTEM_OBJ= starto.o crtbegin.o param.o ioconf.o ${OBJS} ${LIBC} ${LIBZ} \
|
|
crtend.o
|
|
SYSTEM_DEP= Makefile ${SYSTEM_OBJ}
|
|
SYSTEM_LD_HEAD= rm -f $@
|
|
SYSTEM_LD= @echo ${LD} ${LFLAGS} -o $@ ${LIBDIR} "${SYSTEM_OBJ}" vers.o; \
|
|
${LD} ${LFLAGS} -o $@ ${LIBDIR} ${SYSTEM_OBJ} vers.o
|
|
SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ ; \
|
|
$(OBJCOPY) -O binary $@ $@.bin
|
|
|
|
DEBUG?=
|
|
ifeq (${DEBUG}, "-g")
|
|
LFLAGS+= -X
|
|
SYSTEM_LD_TAIL+=; \
|
|
echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
|
|
echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
|
|
else
|
|
LFLAGS+= -S
|
|
endif
|
|
|
|
%LOAD
|
|
|
|
param.c: $S/sys/kern/param.c
|
|
rm -f param.c
|
|
cp $S/sys/kern/param.c .
|
|
|
|
param.o: param.c Makefile
|
|
${NORMAL_C_C}
|
|
|
|
ioconf.o: ioconf.c
|
|
${NORMAL_C}
|
|
|
|
crtbegin.c: $S/pmon/arch/mips/crtbegin.c
|
|
rm -f crtbegin.c
|
|
cp $S/pmon/arch/mips/crtbegin.c .
|
|
|
|
crtbegin.o: crtbegin.c Makefile
|
|
${NORMAL_C_C}
|
|
|
|
crtend.c: $S/pmon/arch/mips/crtend.c
|
|
rm -f crtend.c
|
|
cp $S/pmon/arch/mips/crtend.c .
|
|
|
|
crtend.o: crtend.c Makefile
|
|
${NORMAL_C_C}
|
|
|
|
newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
|
|
sh $S/conf/newvers.sh
|
|
${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
|
|
|
|
clean::
|
|
rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
|
|
[Ee]rrs linterrs makelinks genassym genassym.o
|
|
|
|
lint:
|
|
@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} -UKGDB \
|
|
${CFILES} \
|
|
ioconf.c param.c | \
|
|
grep -v 'static function .* unused'
|
|
|
|
tags:
|
|
@echo "see $S/kern/Makefile for tags"
|
|
|
|
links:
|
|
egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
|
|
sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
|
|
echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
|
|
sort -u | comm -23 - dontlink | \
|
|
sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
|
|
sh makelinks && rm -f dontlink
|
|
|
|
SRCS= ${TARGET}/IT8172/starto.S \
|
|
param.c ioconf.c ${CFILES} ${SFILES}
|
|
depend:: .depend
|
|
.depend: ${SRCS} param.c
|
|
export CC
|
|
${MKDEP} ${AFLAGS} ${CPPFLAGS} ${TARGET}/IT8172/starto.S
|
|
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
|
|
ifneq (${SFILES}, "")
|
|
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
|
|
endif
|
|
|
|
# depend on root or device configuration
|
|
autoconf.o conf.o: Makefile
|
|
|
|
# depend on network or filesystem configuration
|
|
uipc_proto.o vfs_conf.o: Makefile
|
|
|
|
zpmon: startz.o
|
|
make -C ../zboot/images
|
|
make -C ../zboot/pmon zpmon
|
|
|
|
startz.o: ${TARGET}/IT8172/startz.S
|
|
${IMAGE_S}
|
|
|
|
starto.o: ${TARGET}/IT8172/starto.S
|
|
${NORMAL_S}
|
|
|
|
|
|
%RULES
|
|
|