diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-07-30 14:37:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-07-30 14:37:40 +0000 |
commit | 8b2ca3768ac54170af8012d88eb5405b8d1f082c (patch) | |
tree | f823ca6ef05a5574e723af00f07e9057a42eb3ae /sys/arch | |
parent | cb0ac0cd72f8c0c9be3e79bd34609970e712364d (diff) |
Need moddi3.c qdivrem.c for libz
Diffstat (limited to 'sys/arch')
-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 |