2004-05-14 11:49:40 +00:00
|
|
|
# Makefile.arm -- with config changes.
|
|
|
|
# Copyright 1990 W. Jolitz
|
|
|
|
# from: @(#)Makefile.i386 7.1 5/10/91
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Makefile for FreeBSD
|
|
|
|
#
|
|
|
|
# This makefile is constructed from a machine description:
|
|
|
|
# config machineid
|
|
|
|
# Most changes should be made in the machine description
|
2004-09-23 22:47:57 +00:00
|
|
|
# /sys/arm/conf/``machineid''
|
2004-05-14 11:49:40 +00:00
|
|
|
# after which you should do
|
|
|
|
# config machineid
|
|
|
|
# Generic makefile changes should be made in
|
2004-09-23 22:47:57 +00:00
|
|
|
# /sys/conf/Makefile.arm
|
2004-05-14 11:49:40 +00:00
|
|
|
# after which config should be rerun for all machines.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Which version of config(8) is required.
|
2005-11-27 21:41:58 +00:00
|
|
|
%VERSREQ= 700000
|
2004-05-14 11:49:40 +00:00
|
|
|
|
|
|
|
# Temporary stuff while we're still embryonic
|
2004-10-24 15:33:08 +00:00
|
|
|
NO_MODULES=
|
2004-05-14 11:49:40 +00:00
|
|
|
|
|
|
|
STD8X16FONT?= iso
|
|
|
|
|
|
|
|
.if !defined(S)
|
|
|
|
.if exists(./@/.)
|
|
|
|
S= ./@
|
|
|
|
.else
|
|
|
|
S= ../../..
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
.include "$S/conf/kern.pre.mk"
|
|
|
|
|
2004-09-23 22:47:57 +00:00
|
|
|
SYSTEM_LD:= ${SYSTEM_LD:$S/conf/ldscript.$M=ldscript.$M}
|
|
|
|
SYSTEM_DEP:= ${SYSTEM_DEP:$S/conf/ldscript.$M=ldscript.$M}
|
2005-01-19 16:43:43 +00:00
|
|
|
|
|
|
|
.if defined(ARM_BIG_ENDIAN)
|
|
|
|
CC += -mbig-endian
|
|
|
|
SYSTEM_LD += -EB
|
|
|
|
.endif
|
|
|
|
|
2005-10-17 18:31:37 +00:00
|
|
|
|
2005-06-27 14:33:32 +00:00
|
|
|
.if !defined(DEBUG)
|
|
|
|
CFLAGS += -mno-apcs-frame
|
|
|
|
.endif
|
2005-10-03 14:09:58 +00:00
|
|
|
|
|
|
|
DDB_ENABLED!= grep DDB opt_ddb.h || true
|
|
|
|
|
2005-11-25 03:30:45 +00:00
|
|
|
SYSTEM_LD_ = ${LD} -Bdynamic -T ldscript.$M.noheader \
|
2005-11-24 02:25:49 +00:00
|
|
|
-warn-common -export-dynamic -dynamic-linker /red/herring -o \
|
|
|
|
${FULLKERNEL}.noheader -X ${SYSTEM_OBJS} vers.o
|
|
|
|
SYSTEM_LD_TAIL +=; cat ldscript.$M| \
|
|
|
|
sed s/" + SIZEOF_HEADERS"// \
|
|
|
|
>ldscript.$M.noheader; \
|
|
|
|
${SYSTEM_LD_}; \
|
|
|
|
${OBJCOPY} -S -O binary ${FULLKERNEL}.noheader \
|
|
|
|
${KERNEL_KO}.bin; \
|
|
|
|
rm ${FULLKERNEL}.noheader
|
2005-10-04 14:38:55 +00:00
|
|
|
.if ${DDB_ENABLED} != ""
|
2005-11-17 01:32:01 +00:00
|
|
|
SYSTEM_LD_TAIL += ;echo "\#define KERNNAME \"${KERNEL_KO}.tmp\"" \
|
|
|
|
>opt_kernname.h ;\
|
2005-10-17 18:31:37 +00:00
|
|
|
${OBJCOPY} --strip-symbol '$$d' --strip-symbol '$$a' \
|
2005-11-17 01:32:01 +00:00
|
|
|
-g --strip-symbol '$$t' ${FULLKERNEL} ${KERNEL_KO}.tmp;\
|
2005-10-03 14:09:58 +00:00
|
|
|
${CC} -O -nostdlib -I. -Xlinker -T -Xlinker ldscript.arm \
|
2005-11-17 01:32:01 +00:00
|
|
|
$S/$M/$M/elf_trampoline.c $S/$M/$M/inckern.S -o ${KERNEL_KO}.tramp;\
|
2005-11-24 02:25:49 +00:00
|
|
|
${CC} -O -nostdlib -I. -Xlinker -T -Xlinker ldscript.arm.noheader \
|
|
|
|
$S/$M/$M/elf_trampoline.c $S/$M/$M/inckern.S -o \
|
|
|
|
${KERNEL_KO}.tramp.noheader; \
|
|
|
|
${OBJCOPY} -S -O binary ${KERNEL_KO}.tramp.noheader \
|
|
|
|
${KERNEL_KO}.tramp.bin; \
|
|
|
|
rm ${KERNEL_KO}.tmp ${KERNEL_KO}.tramp.noheader; \
|
|
|
|
|
2005-10-03 14:09:58 +00:00
|
|
|
.endif
|
|
|
|
|
2005-11-25 03:30:45 +00:00
|
|
|
CLEANFILES += ldscript.$M ldscript.$M.noheader ${KERNEL_KO}.bin \
|
2005-11-24 02:25:49 +00:00
|
|
|
${KERNEL_KO}.tramp ${KERNEL_KO}.tramp.bin
|
2004-05-14 11:49:40 +00:00
|
|
|
%BEFORE_DEPEND
|
|
|
|
|
|
|
|
%OBJS
|
|
|
|
|
|
|
|
%FILES.c
|
|
|
|
|
|
|
|
%FILES.s
|
|
|
|
|
|
|
|
%FILES.m
|
|
|
|
|
|
|
|
%CLEAN
|
|
|
|
|
2005-10-04 14:38:55 +00:00
|
|
|
.if ${DDB_ENABLED} != ""
|
|
|
|
CLEAN+= kernel.tramp
|
|
|
|
.endif
|
2004-09-23 22:47:57 +00:00
|
|
|
ldscript.$M: $S/conf/ldscript.$M
|
|
|
|
cat $S/conf/ldscript.$M|sed s/KERNPHYSADDR/${KERNPHYSADDR}/g| \
|
|
|
|
sed s/KERNVIRTADDR/${KERNVIRTADDR}/g > ldscript.$M
|
2004-05-14 11:49:40 +00:00
|
|
|
%RULES
|
|
|
|
|
|
|
|
.include "$S/conf/kern.post.mk"
|