diff options
| -rw-r--r-- | sys/boot/i386/loader/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/boot/i386/loader/Makefile b/sys/boot/i386/loader/Makefile index fe78fb9b130d..b70281bab932 100644 --- a/sys/boot/i386/loader/Makefile +++ b/sys/boot/i386/loader/Makefile @@ -45,8 +45,14 @@ LIBI386= ${.OBJDIR}/../libi386/libi386.a CFLAGS+= -I${.CURDIR}/.. # where to get libstand from +#XXX need a better way to do this +LIBSTAND= ${.CURDIR}/../../../../lib/libstand/libstand.a +.if !exists(${LIBSTAND}) +LIBSTAND= ${.OBJDIR}/../../../../lib/libstand/libstand.a +.if !exists(${LIBSTAND}) LIBSTAND= -lstand -#LIBSTAND= ${.CURDIR}/../../../../lib/libstand/libstand.a +.endif +.endif CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/ # BTX components |
