diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-20 18:14:58 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-20 18:14:58 +0000 |
commit | fdc38214f1c40ce26e6e25981327826a7ea66eb5 (patch) | |
tree | ae9c7e77ecb34ab5cef60b5c8b9394610fd73b47 /sys/arch/i386/stand/libsa/Makefile | |
parent | 23e22f5ad7ff8815b741e5de54c0b98982f70ccc (diff) |
new exec framework
Diffstat (limited to 'sys/arch/i386/stand/libsa/Makefile')
-rw-r--r-- | sys/arch/i386/stand/libsa/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/stand/libsa/Makefile b/sys/arch/i386/stand/libsa/Makefile index 03fc1dd282c..6809b6705f3 100644 --- a/sys/arch/i386/stand/libsa/Makefile +++ b/sys/arch/i386/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.34 1998/05/30 02:30:49 mickey Exp $ +# $OpenBSD: Makefile,v 1.35 1998/07/20 18:14:55 mickey Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -27,9 +27,9 @@ CLEANFILES+= unixdev.o unixsys.o nullfs.o .endif # stand routines -SRCS+= alloc.c exit.c exec.c getfile.c gets.c globals.c strcmp.c strlen.c \ +SRCS+= alloc.c exit.c getfile.c gets.c globals.c strcmp.c strlen.c \ strncmp.c memcmp.c memcpy.c memset.c printf.c strerror.c strncpy.c \ - strtol.c ctime.c + strtol.c ctime.c exec.new.c exec_aout.c # io routines SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \ @@ -59,7 +59,7 @@ install: .include <bsd.lib.mk> CPPFLAGS+=-DLINKADDR=${LINKADDR} -DHEAP_LIMIT=${HEAP_LIMIT} ${DEBUGFLAGS} -CPPFLAGS+=-I${S}/stand/boot +CPPFLAGS+=-I${S}/stand/boot -DCOMPAT_UFS CFLAGS+=${SACFLAGS} -D__INTERNAL_LIBSA_CREAD #AS=cat ; #AS+= -R |