#       $Id: Makefile.Yosemite,v 1.2 2006/08/26 21:55:20 pefo Exp $
#
# Makefile for PMON2000 on Yosemite ATX platform
#
# This makefile is constructed from a machine description:
#	config machineid
# Most changes should be made in the machine description
#	/sys/arch/pmonmips/conf/``machineid''
# after which you should do
#	config machineid
# Machine generic makefile changes should be made in
#	/sys/arch/pmonmips/conf/Makefile.pmonmips
# 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

#
# Use default if CROSS_COMPILE is not set in the shell environment.
#
ifndef CROSS_COMPILE
CROSS_COMPILE=/build/pmon2000/tools/usr/bin/mips-linux-
export CROSS_COMPILE
endif

#
# 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/Yosemite
MACHINE=mips
MACHINE_ARCH=mips
COMPILEDIR=${shell pwd}
OBJDIR=${COMPILEDIR}
PMONDIR=${S}


INCLUDES=	-I. -I${S}/include -I./machine -I${S} \
		-I${S}/sys/arch/${MACHINE}/include -I${S}/sys \
		-I${TARGET} -I${COMPILEDIR} -nostdinc 
CPPFLAGS=	${INCLUDES} ${IDENT} -D_KERNEL -D__OpenBSD__ -DPMON -D__PMON__\
		-me${ENDIAN} -mno-abicalls -fno-pic -mips3 -mabi=n32 ${XOPT}
CWARNFLAGS=	-Werror -Wmissing-prototypes -Wstrict-prototypes \
		-Wno-uninitialized -Wno-format -Wno-main
CFLAGS=		${DEBUG} ${CWARNFLAGS} ${OPT} -G 0 -fno-builtin -msoft-float
AFLAGS=		-D_LOCORE -G 0
ifdef COMPRESSED
AFLAGS+=	-DCOMPRESSED
endif

LFLAGS=		-N -G 0 -Ttext=80010000 -e start -melf32${ENDIAN}tsmipn32

# Change this if load address is changed! Relocs srec output to address 0.
VMA_ADJUST=     0x7fff0000

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 $<
NORMAL_S_C=	${AS}  ${COPTS} ${PARAM} $< -o $@


%OBJS

%CFILES

%SFILES

# load lines for config "xxx" will be emitted as:
# xxx: ${PMON_DEP}
#	${PMON_LD_HEAD}
#	${PMON_LD}
#	${PMON_LD_TAIL}
PMON_OBJ=	start.o crtbegin.o param.o ioconf.o ${OBJS} ${LIBC} ${LIBZ} \
		crtend.o
PMONZ_OBJ=	zipstart.o flashunzip.o zipboot.o pmonz.o ${LIBC} ${LIBZ}

PMON_DEP=	Makefile ${PMON_OBJ}
PMONZ_DEP=	Makefile ${PMONZ_OBJ}
PMON_LD_HEAD=	rm -f $@
PMON_LD_TAIL=	@${SIZE} $@; chmod 755 $@ ; \
		$(OBJCOPY) --srec-forceS3 -O srec --adjust-vma $(VMA_ADJUST) $@ $@.srec

PMON_LD=	@echo ${LD} ${LFLAGS} -o $@ ${LIBDIR} '$${PMON_OBJ}' vers.o; \
		${LD} ${LFLAGS} -o $@ ${LIBDIR} ${PMON_OBJ} vers.o

PMONZ_LD=	@echo ${LD} ${LFLAGS} -o $@ ${LIBDIR} '$${PMONZ_OBJ}' vers.o; \
		${LD} ${LFLAGS} -o $@ ${LIBDIR} ${PMONZ_OBJ} vers.o

DEBUG?=
ifeq (${DEBUG}, "-g")
LFLAGS+=	-X
PMON_LD_TAIL+=; \
		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
else
LFLAGS+=	-S
endif

#  Normal build.
ifndef COMPRESSED
SYSTEM_DEP=	${PMON_DEP}
SYSTEM_LD=	${PMON_LD}
SYSTEM_LD_HEAD=	${PMON_LD_HEAD}
SYSTEM_LD_TAIL=	${PMON_LD_TAIL}
else
SYSTEM_DEP=	${PMONZ_DEP}
SYSTEM_LD=	${PMONZ_LD}
SYSTEM_LD_HEAD=	${PMON_LD_HEAD}
SYSTEM_LD_TAIL=	${PMON_LD_TAIL}
endif

%LOAD

start.o: ${TARGET}/Yosemite/start.S
	${NORMAL_S}

zipstart.o: ${TARGET}/Yosemite/start.S
	${CC} ${AFLAGS} ${CPPFLAGS} -DZIPSTART -c -o zipstart.o \
		${TARGET}/Yosemite/start.S

flashunzip.o: ${TARGET}/Yosemite/flashunzip.c
	${NORMAL_C_C}

zipboot.o: ${S}/pmon/loaders/zipboot.c
	${NORMAL_C_C}

pmonz:	${PMON_DEP} newvers
	${PMON_LD_HEAD}
	${PMON_LD}

pmonz.c: pmonz
	$(OBJCOPY) -O binary pmonz pmonz.bin
	gzip pmonz.bin
	cvtbinhex pmonz.bin.gz pmonz.c
	rm pmonz.bin.gz

pmonz.o: pmonz.c
	${NORMAL_C_C}

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: ${PMON_DEP} ${PMON_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}/Yosemite/start.S \
	param.c ioconf.c ${CFILES} ${SFILES}

ifdef COMPRESSED
SRCS+=	${TARGET}/Yosemite/flashunzip.c
endif

depend:: .depend
.depend: ${SRCS} param.c
	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${TARGET}/Yosemite/start.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

%RULES
