summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand/libsa/Makefile
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-08-13 04:03:31 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-08-13 04:03:31 +0000
commit8f1e2faf3b28ce1146c187c22314e213eabafc2e (patch)
tree6d75e7a50687e28224d41f0771a626512338f7bc /sys/arch/i386/stand/libsa/Makefile
parentdc838e4b20aca8fda46e1433689baea44e2e37dc (diff)
split off START into LINKADDR and LOADADDR (we will need reloctable boot)
BOOTREL as a linear address, not segment one more heap (;
Diffstat (limited to 'sys/arch/i386/stand/libsa/Makefile')
-rw-r--r--sys/arch/i386/stand/libsa/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/Makefile b/sys/arch/i386/stand/libsa/Makefile
index 6495768a61d..db3741a1161 100644
--- a/sys/arch/i386/stand/libsa/Makefile
+++ b/sys/arch/i386/stand/libsa/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.22 1997/08/13 03:28:11 mickey Exp $
+# $OpenBSD: Makefile,v 1.23 1997/08/13 04:03:30 mickey Exp $
LIB= sa
@@ -13,9 +13,9 @@ DIR_KERN=$S/lib/libkern
#AS+= -a
# i386 stuff (so, it will possibly load in the same 64k)
-SRCS= unixsys.S gidt.S debug_i386.S \
- bioscons.c dev_i386.c exec_i386.c biosdev.c gateA20.c memprobe.c \
- time.c alloca.S machdep.c
+SRCS= gidt.S debug_i386.S alloca.S \
+ machdep.c dev_i386.c exec_i386.c biosdev.c gateA20.c memprobe.c \
+ bioscons.c time.c
# stand routines
SRCS+= alloc.c exit.c exec.c getfile.c gets.c globals.c strcmp.c strlen.c \
@@ -56,5 +56,5 @@ install:
.include <bsd.lib.mk>
-CPPFLAGS+=-DSTART=${START} -DHEAP_LIMIT=${HEAP_LIMIT} ${DEBUGFLAGS}
+CPPFLAGS+=-DLINKADDR=${LINKADDR} -DHEAP_LIMIT=${HEAP_LIMIT} ${DEBUGFLAGS}
CFLAGS+=${SACFLAGS} -D__INTERNAL_LIBSA_CREAD