diff options
author | bde <bde@FreeBSD.org> | 1997-07-20 08:46:30 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-07-20 08:46:30 +0000 |
commit | b228bebf64bd0e83fefdf0a71bfa82059c64f46d (patch) | |
tree | ecda559adfdebc08e5daa0303d8bdc4a2fd081c4 /sys/modules/gnufpu | |
parent | 37174c05e61383f861bae6b5c39f85c40dc38f56 (diff) | |
download | FreeBSD-src-b228bebf64bd0e83fefdf0a71bfa82059c64f46d.zip FreeBSD-src-b228bebf64bd0e83fefdf0a71bfa82059c64f46d.tar.gz |
Fixed bitrot in fpu LKMs.
Diffstat (limited to 'sys/modules/gnufpu')
-rw-r--r-- | sys/modules/gnufpu/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/modules/gnufpu/Makefile b/sys/modules/gnufpu/Makefile index 7f70eb8..3d9b07f 100644 --- a/sys/modules/gnufpu/Makefile +++ b/sys/modules/gnufpu/Makefile @@ -1,7 +1,7 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 12:47:52 peter Exp $ .PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul -KMOD= gnufpu +KMOD= gnufpu_mod SRCS= div_small.s errors.c fpu_arith.c fpu_aux.c fpu_entry.c fpu_etc.c \ fpu_trig.c get_address.c load_store.c poly_2xm1.c poly_atan.c \ poly_div.s poly_l2.c poly_mul64.s poly_sin.c poly_tan.c \ @@ -12,6 +12,7 @@ PSEUDO_LKM= CFLAGS+= -DLKM -I${.CURDIR}/../../sys/sys .s.o: - cpp -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o + ${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c \ + ${.IMPSRC} -o ${.TARGET} .include <bsd.kmod.mk> |