diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-05-28 20:52:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-05-28 20:52:43 +0000 |
commit | e14f3bc839d97d42ba70c1db48ca0ba5d21d21cc (patch) | |
tree | 19a06cd41aafd7f329c594cd3ecc7f85f9e20b28 /sys/arch/i386/stand/boot | |
parent | f7c2e9309bb92905bc0ef3ccc8ccb8ad200da65d (diff) |
cleanup the Makefiles a bit.
make machine link in a smart way, remove unused bits.
Diffstat (limited to 'sys/arch/i386/stand/boot')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index 00a1734c66a..194378e3ac2 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 1998/05/27 13:33:36 mickey Exp $ +# $OpenBSD: Makefile,v 1.21 1998/05/28 20:52:36 mickey Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -6,7 +6,6 @@ PROG= boot LD?= ld SIZE?= size LDFLAGS+=-nostdlib -Bstatic -CLEANFILES+= i386 machine .if defined(DEBUGFLAGS) && !empty(DEBUGFLAGS:M-D_TEST) CLEANFILES+= srt0.o @@ -28,13 +27,6 @@ DPADD= ${LIBSA} ${LIBZ} .PATH: ${S}/stand/boot -all: machine-links - -machine-links: - @rm -f machine i386 - @ln -fs ${.CURDIR}/../.. i386 - @ln -fs ${.CURDIR}/../../include machine - ${PROG}: $(OBJS) $(DPADD) $(LD) $(LDFLAGS) -o $(PROG) $(OBJS) $(LDADD) @$(SIZE) $(PROG) |