diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-23 23:45:19 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-23 23:45:19 +0000 |
commit | 1159c12666f482fe1c96c63a61d787ea6ba75f83 (patch) | |
tree | 21c8243da51deda9b4d31e02141405b2d24c8cb2 /sys/arch/i386/stand | |
parent | c7edf16e96a76fdc2cbbc87138b69510299e8891 (diff) |
remove @obj dependency
Diffstat (limited to 'sys/arch/i386/stand')
-rw-r--r-- | sys/arch/i386/stand/biosboot/Makefile | 3 | ||||
-rw-r--r-- | sys/arch/i386/stand/installboot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/libsa/Makefile | 3 | ||||
-rw-r--r-- | sys/arch/i386/stand/libz/Makefile | 3 | ||||
-rw-r--r-- | sys/arch/i386/stand/mbr/Makefile | 3 |
5 files changed, 11 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/biosboot/Makefile b/sys/arch/i386/stand/biosboot/Makefile index 01ab3ad93f1..7d5b9205304 100644 --- a/sys/arch/i386/stand/biosboot/Makefile +++ b/sys/arch/i386/stand/biosboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 1997/04/29 00:10:05 mickey Exp $ +# $OpenBSD: Makefile,v 1.8 1997/06/23 23:45:15 kstailey Exp $ PROG= biosboot SRCS= biosboot.S @@ -6,6 +6,7 @@ LD=ld LDFLAGS=-nostdlib -Ttext 0 -N -x -Bstatic INSTALL_STRIP= MAN= biosboot.8 +SADIR= ${.CURDIR}/.. all: machine-links diff --git a/sys/arch/i386/stand/installboot/Makefile b/sys/arch/i386/stand/installboot/Makefile index 9225494c973..83183a0a50e 100644 --- a/sys/arch/i386/stand/installboot/Makefile +++ b/sys/arch/i386/stand/installboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1997/03/31 23:06:24 mickey Exp $ +# $OpenBSD: Makefile,v 1.4 1997/06/23 23:45:16 kstailey Exp $ PROG= installboot MAN= installboot.8 @@ -6,4 +6,6 @@ MAN= installboot.8 # Need this to work in the miniroot LDSTATIC= -static +SADIR= ${.CURDIR}/.. + .include <bsd.prog.mk> diff --git a/sys/arch/i386/stand/libsa/Makefile b/sys/arch/i386/stand/libsa/Makefile index 8c1b4bf3004..85fb562f137 100644 --- a/sys/arch/i386/stand/libsa/Makefile +++ b/sys/arch/i386/stand/libsa/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.12 1997/04/30 18:10:08 mickey Exp $ +# $OpenBSD: Makefile,v 1.13 1997/06/23 23:45:17 kstailey Exp $ LIB= sa S=${.CURDIR}/../../../.. +SADIR=${.CURDIR}/.. DIR_SA= $S/lib/libsa DIR_KERN=$S/lib/libkern diff --git a/sys/arch/i386/stand/libz/Makefile b/sys/arch/i386/stand/libz/Makefile index 59805f6206c..a9c91273105 100644 --- a/sys/arch/i386/stand/libz/Makefile +++ b/sys/arch/i386/stand/libz/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 1997/04/21 00:41:32 mickey Exp $ +# $OpenBSD: Makefile,v 1.5 1997/06/23 23:45:17 kstailey Exp $ # $NetBSD: Makefile,v 1.2 1997/01/22 01:36:30 cgd Exp $ CFLAGS+=${SACFLAGS} S=${.CURDIR}/../../../.. +SADIR=${.CURDIR}/.. ZDST=${.OBJDIR} .PATH: ${S}/lib/libz diff --git a/sys/arch/i386/stand/mbr/Makefile b/sys/arch/i386/stand/mbr/Makefile index 0d06a0c70e8..a7cd5f0551b 100644 --- a/sys/arch/i386/stand/mbr/Makefile +++ b/sys/arch/i386/stand/mbr/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1997/04/27 20:56:29 millert Exp $ +# $OpenBSD: Makefile,v 1.5 1997/06/23 23:45:18 kstailey Exp $ # PROG= mbr @@ -8,6 +8,7 @@ LD=ld LDFLAGS=-nostdlib -Ttext 0 -x -N -s -Bstatic MAN+= mbr.8 INSTALL_STRIP= +SADIR=${.CURDIR}/.. # Uncomment this to make mbr talk to a serial port. #CPPFLAGS+=-DSERIAL=0 |