diff options
author | se <se@FreeBSD.org> | 1999-07-29 22:22:38 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1999-07-29 22:22:38 +0000 |
commit | e22d6206a96e682e01917b59a7cb9688c20b2d0c (patch) | |
tree | 9ce6131d839c362f843cef1c5207eac3793e1725 /sys/boot | |
parent | a0ef521585d908307c1c0c0496ad72c93e8f397b (diff) | |
download | FreeBSD-src-e22d6206a96e682e01917b59a7cb9688c20b2d0c.zip FreeBSD-src-e22d6206a96e682e01917b59a7cb9688c20b2d0c.tar.gz |
Fix install target (install loader.exe, not loader).
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/arc/loader/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/arc/loader/Makefile b/sys/boot/arc/loader/Makefile index 8463b88..1fdb2c3 100644 --- a/sys/boot/arc/loader/Makefile +++ b/sys/boot/arc/loader/Makefile @@ -1,7 +1,7 @@ # $NetBSD: Makefile,v 1.12 1998/02/19 14:18:36 drochner Exp $ BASE= loader -PROG= ${BASE} +PROG= ${BASE}.exe NOMAN= NEWVERSWHAT= "ARC disk boot" ${MACHINE_ARCH} @@ -31,7 +31,7 @@ STRIP= BINDIR?= /boot LOAD_ADDRESS?= 0xffffffff80900000 -all: ${BASE}.exe +all: ${PROG} vers.o: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version sh ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${NEWVERSWHAT} |