mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 00:24:52 -04:00
41 lines
864 B
Makefile
41 lines
864 B
Makefile
# $NetBSD: Makefile,v 1.8 2005/12/11 12:19:34 christos Exp $
|
|
|
|
S= ${.CURDIR}/../../../..
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../xxboot
|
|
|
|
PROG= xxboot_ustarfs
|
|
|
|
SRCS= start.S bootxx.c romread.S str.S
|
|
|
|
STRIPFLAG=
|
|
CPPFLAGS+=-D_STANDALONE -DLIBSA_NO_FD_CHECKING -DLIBSA_NO_RAW_ACCESS \
|
|
-DLIBSA_NO_TWIDDLE -DLIBSA_SINGLE_DEVICE=rom \
|
|
-DLIBSA_NO_COMPAT_UFS \
|
|
-DLIBSA_NO_FS_SYMLINK -DLIBSA_NO_FS_CLOSE \
|
|
-DLIBSA_NO_FS_WRITE -DLIBSA_NO_FS_SEEK \
|
|
-DNEED_USTARFS
|
|
BINDIR= /usr/mdec
|
|
|
|
CFLAGS= -Os
|
|
LIBC=
|
|
|
|
SA_AS= library
|
|
.include "${S}/lib/libsa/Makefile.inc"
|
|
LIBSA= ${SALIB}
|
|
|
|
KERN_AS=library
|
|
.include "${S}/lib/libkern/Makefile.inc"
|
|
LIBKERN=${KERNLIB}
|
|
|
|
CLEANFILES+= ${PROG}.out
|
|
|
|
${PROG}: ${OBJS} ${LIBSA} ${LIBKERN}
|
|
${LD} -N -Ttext 100000 -o ${PROG}.out ${OBJS} ${LIBSA} ${LIBKERN}
|
|
${SIZE} ${PROG}.out
|
|
${OBJCOPY} -O binary ${PROG}.out ${PROG}
|
|
|
|
.include <bsd.prog.mk>
|