diff options
Diffstat (limited to 'sys/arch/mvmeppc/stand/bootst/Makefile')
-rw-r--r-- | sys/arch/mvmeppc/stand/bootst/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sys/arch/mvmeppc/stand/bootst/Makefile b/sys/arch/mvmeppc/stand/bootst/Makefile new file mode 100644 index 00000000000..15b6465861c --- /dev/null +++ b/sys/arch/mvmeppc/stand/bootst/Makefile @@ -0,0 +1,38 @@ +# from: @(#)Makefile 8.1 (Berkeley) 6/10/93 +# $OpenBSD: Makefile,v 1.1 2001/06/26 21:58:00 smurph Exp $ + +SIZE?= size + +S= ${.CURDIR}/../../../.. +DEFS= -DSTANDALONE -DCOMPAT_NOLABEL +INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ + -I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa +CFLAGS=-O0 ${INCPATH} ${DEFS} ${COPTS} +LDFLAGS=-s -N -Ttext ${STAGE2_RELOC} +CLEANFILES+=stboot bootst bootst.bug + +#.include "${S}/arch/mvme88k/stand/wrtvid/Makefile.inc" +.include "${S}/arch/mvmeppc/stand/bugcrt/Makefile.inc" +.include "${S}/arch/mvmeppc/stand/libbug/Makefile.inc" +.include "${S}/arch/mvmeppc/stand/libsa/Makefile.inc" +.include "${S}/arch/mvmeppc/stand/libz/Makefile.inc" + +SRCS= boot.c version.c + +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} + +OBJS= ${SRCS:N*.h:R:S/$/.o/g} + +BOOTS= bootst +ALL= ${BOOTS} + +all: ${ALL} + +bootst: ${OBJS} ${SINGLE} ${LIBS} + ${LD} ${LDFLAGS} ${SINGLE} ${OBJS} ${LIBS} -o $@ + @${SIZE} $@ + +install: + install -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR} + +.include <bsd.prog.mk> |