diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/stand/boot/Makefile | 6 | ||||
-rw-r--r-- | sys/arch/amd64/stand/cdboot/Makefile | 6 | ||||
-rw-r--r-- | sys/arch/amd64/stand/pxeboot/Makefile | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/sys/arch/amd64/stand/boot/Makefile b/sys/arch/amd64/stand/boot/Makefile index 3939bd4e842..a50c13aafdf 100644 --- a/sys/arch/amd64/stand/boot/Makefile +++ b/sys/arch/amd64/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2005/05/03 13:18:05 tom Exp $ +# $OpenBSD: Makefile,v 1.4 2005/07/30 14:37:39 millert Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -26,7 +26,7 @@ SRCS+= gidt.S alloca.S biosdev.c bioscons.c gateA20.c \ SRCS+= boot.c cmd.c vars.c bootarg.c .PATH: ${S}/lib/libsa -.PATH: ${S}/lib/libkern # for strl* +.PATH: ${S}/lib/libkern # for strl* and gcc support # stand routines 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 snprintf.c \ @@ -36,6 +36,8 @@ SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \ open.c read.c stat.c write.c cread.c readdir.c cons.c loadfile.c # boot filesystems SRCS+= ufs.c +# gcc support +SRCS+= moddi3.c qdivrem.c .PATH: ${S}/lib/libz SRCS+= adler32.c crc32.c inflate.c inftrees.c diff --git a/sys/arch/amd64/stand/cdboot/Makefile b/sys/arch/amd64/stand/cdboot/Makefile index f32a8632a44..a2ebb1089ea 100644 --- a/sys/arch/amd64/stand/cdboot/Makefile +++ b/sys/arch/amd64/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2005/05/03 13:18:05 tom Exp $ +# $OpenBSD: Makefile,v 1.5 2005/07/30 14:37:39 millert Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -26,7 +26,7 @@ SRCS+= gidt.S alloca.S biosdev.c bioscons.c gateA20.c \ SRCS+= boot.c cmd.c vars.c bootarg.c .PATH: ${S}/lib/libsa -.PATH: ${S}/lib/libkern # for strl* +.PATH: ${S}/lib/libkern # for strl* and gcc support # stand routines # not required: getfile.c gets.c globals.c strlcat.c SRCS+= alloc.c exit.c strcmp.c strlen.c \ @@ -38,6 +38,8 @@ SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c lseek.c \ open.c read.c stat.c cread.c readdir.c cons.c loadfile.c # boot filesystems SRCS+= ufs.c cd9660.c +# gcc support +SRCS+= moddi3.c qdivrem.c .PATH: ${S}/lib/libz SRCS+= adler32.c crc32.c inflate.c inftrees.c diff --git a/sys/arch/amd64/stand/pxeboot/Makefile b/sys/arch/amd64/stand/pxeboot/Makefile index e00d764af0b..6b2d0890404 100644 --- a/sys/arch/amd64/stand/pxeboot/Makefile +++ b/sys/arch/amd64/stand/pxeboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2005/05/03 13:18:05 tom Exp $ +# $OpenBSD: Makefile,v 1.5 2005/07/30 14:37:39 millert Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -27,7 +27,7 @@ SRCS+= pxe.c pxe_call.S pxe_net.c SRCS+= boot.c cmd.c vars.c bootarg.c .PATH: ${S}/lib/libsa -.PATH: ${S}/lib/libkern # for strl* +.PATH: ${S}/lib/libkern # for strl* and gcc support # stand routines 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 snprintf.c \ @@ -41,6 +41,8 @@ SRCS+= ether.c netif.c rpc.c SRCS+= bootp.c bootparam.c # boot filesystems SRCS+= ufs.c nfs.c tftp.c +# gcc support +SRCS+= moddi3.c qdivrem.c .PATH: ${S}/lib/libz SRCS+= adler32.c crc32.c inflate.c inftrees.c |