diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 09:16:48 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 09:16:48 +0000 |
commit | 2322741e58a481c8a6be6953f99ee13129bb0d2f (patch) | |
tree | 00a55f14a55b5419b1ac397b285899e36823b7e8 /sys/arch/mvme88k/stand/bugcrt/Makefile | |
parent | d377787f21e067a057e0f09aecf2663a56c873ae (diff) |
fixed bugargs and lots of stuff regaurding netboot.
Diffstat (limited to 'sys/arch/mvme88k/stand/bugcrt/Makefile')
-rw-r--r-- | sys/arch/mvme88k/stand/bugcrt/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/stand/bugcrt/Makefile b/sys/arch/mvme88k/stand/bugcrt/Makefile index 19d6add99b3..3bb46db9c62 100644 --- a/sys/arch/mvme88k/stand/bugcrt/Makefile +++ b/sys/arch/mvme88k/stand/bugcrt/Makefile @@ -1,10 +1,10 @@ -# $Id: Makefile,v 1.3 1997/03/03 20:22:14 rahnds Exp $ - -CFLAGS+=-I${.CURDIR}/../../include - -.include "${MACHINE_ARCH}/Makefile.inc" - -.PATH: ${.CURDIR}/${MACHINE_ARCH} +# $OpenBSD: Makefile,v 1.4 1998/08/22 09:16:45 smurph Exp $ +# +# DO NOT OPTMIZE bugcrt (i.e. no "-O2") +# +S=${.CURDIR}/../../../.. +CFLAGS=-I${.CURDIR}/../../include -I${.CURDIR}/../libbug -I${S}/lib/libsa \ + -fomit-frame-pointer OBJS=bugcrt.o @@ -13,7 +13,7 @@ CLEANFILES+=a.out all: ${OBJS} bugcrt.o: bugcrt.c - ${CC} ${CFLAGS} -c ${.ALLSRC} + ${COMPILE.c} -c $< ${LD} -x -r ${.TARGET} mv a.out ${.TARGET} |