46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.8 1997/01/18 00:35:23 cgd Exp $
|
|
|
|
.PATH: ${.CURDIR}/.. ${.CURDIR}/../../../../lib/libsa
|
|
|
|
BOOT_PROG = bootxx
|
|
BOOT_RELOC = ${PRIMARY_LOAD_ADDRESS}
|
|
|
|
BOOT_SRCS = start.S bootxx.c prom.c prom_disp.S bzero.c puts.c
|
|
BOOT_OBJS = ${BOOT_SRCS:N*.h:R:S/$/.o/g}
|
|
|
|
HEADERSIZE_PROG = headersize
|
|
|
|
AFLAGS += -DASSEMBLER
|
|
CPPFLAGS += -I${.CURDIR}/../.. -I${.CURDIR}/../../../.. -DPRIMARY_BOOTBLOCK
|
|
CFLAGS = -Werror -mno-fp-regs -g
|
|
|
|
.PATH: ${.CURDIR}/../../../../lib/libkern
|
|
|
|
all: ${BOOT_PROG}
|
|
|
|
${BOOT_PROG}: ${BOOT_OBJS} ${HEADERSIZE_PROG}
|
|
${LD} -Ttext ${BOOT_RELOC} -N -e start -o ${BOOT_PROG}.hdr \
|
|
${BOOT_OBJS}
|
|
size ${BOOT_PROG}.hdr
|
|
strip ${BOOT_PROG}.hdr
|
|
dd if=${BOOT_PROG}.hdr of=${BOOT_PROG}.nohdr \
|
|
bs=`./${HEADERSIZE_PROG} ${BOOT_RELOC} ${BOOT_PROG}.hdr` skip=1
|
|
dd if=${BOOT_PROG}.nohdr of=${BOOT_PROG} bs=`expr 15 \* 512` conv=sync
|
|
|
|
install:
|
|
${INSTALL} -c -o bin -g bin -m 444 ${BOOT_PROG} \
|
|
${DESTDIR}${BINDIR}/${BOOT_PROG}
|
|
|
|
clean:
|
|
rm -f a.out [Ee]rrs mklog core *.core \
|
|
${BOOT_PROG} ${BOOT_OBJS} ${CLEANFILES} \
|
|
${BOOT_PROG}.hdr ${BOOT_PROG}.nohdr ${HEADERSIZE_PROG}
|
|
|
|
cleandir: clean
|
|
|
|
depend:
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
.include <bsd.obj.mk>
|
|
.include <bsd.dep.mk>
|