diff options
author | 1997-04-18 17:53:13 +0000 | |
---|---|---|
committer | 1997-04-18 17:53:13 +0000 | |
commit | b5207a1bbbcc6a140afed9c12717e793bf41baee (patch) | |
tree | edefaece6935715eb846b00f040bcddba94c4b35 | |
parent | some cleanup, comments and copyright (diff) | |
download | wireguard-openbsd-b5207a1bbbcc6a140afed9c12717e793bf41baee.tar.xz wireguard-openbsd-b5207a1bbbcc6a140afed9c12717e793bf41baee.zip |
angelos, please forgive me );
i missed this yesterday.... now it must work for you! (;
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index b5b84fb74cc..b46aaa47ff5 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1997/04/17 22:46:21 weingart Exp $ +# $OpenBSD: Makefile,v 1.5 1997/04/18 17:53:13 mickey Exp $ PROG= boot SRCS= srt0.S boot.c cmd.c conf.c @@ -7,10 +7,12 @@ AFLAGS+=-Wa,-R # AFLAGS+=-Wa,-a LD=ld LDFLAGS+=-nostdlib -Ttext $(START) -z -x -e start_boot -Bstatic +STRIP= MAN= boot.8 +SADIR=${.CURDIR}/.. -LDADD= -L../libsa -lsa -L../libz -lz -DPADD= ../libsa/libsa.a ../libz/libz.a +LDADD= ${LIBSA} ${LIBZ} +DPADD= ${LIBSA} ${LIBZ} all: machine-links |