diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-06-26 21:58:11 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-06-26 21:58:11 +0000 |
commit | 416f561c78b0eca90fdb484e72a96080b0825dca (patch) | |
tree | d310db0254b85229b90b9d90e79cabfbbcb6101a /sys/arch/mvmeppc/stand/bootst/Makefile | |
parent | 77682e0d8d22531ed2952aaab30aae7c69483b3d (diff) |
Initial import of mvmeppc.
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> |