diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-12-14 08:26:14 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-12-14 08:26:14 +0000 |
commit | e531deaeb2d13c64871020a16b02e573c5dbd5c6 (patch) | |
tree | f560ee2d45153b36ff81c261ff5cf3ef767d0082 | |
parent | 5e46340891e3e5fd8ab7e9c5ed0479323a1c7bdb (diff) |
Notes
-rw-r--r-- | lkm/Makefile | 4 | ||||
-rw-r--r-- | lkm/fpu/Makefile | 10 | ||||
-rw-r--r-- | lkm/gnufpu/Makefile | 17 | ||||
-rw-r--r-- | sys/modules/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/fpu/Makefile | 10 | ||||
-rw-r--r-- | sys/modules/gnufpu/Makefile | 17 |
6 files changed, 58 insertions, 4 deletions
diff --git a/lkm/Makefile b/lkm/Makefile index 62eca4cdcdbf..d5b608a0faa5 100644 --- a/lkm/Makefile +++ b/lkm/Makefile @@ -1,6 +1,6 @@ -# $Id: Makefile,v 1.16 1995/10/28 13:28:16 peter Exp $ +# $Id: Makefile,v 1.17 1995/10/28 17:46:03 peter Exp $ -SUBDIR= atapi cd9660 coff fdesc ibcs2 if_disc if_ppp if_sl if_tun \ +SUBDIR= atapi cd9660 coff fdesc fpu gnufpu ibcs2 if_disc if_ppp if_sl if_tun \ ipfw kernfs linux msdos nfs nullfs \ pcic portal procfs syscons umapfs union wcd # diff --git a/lkm/fpu/Makefile b/lkm/fpu/Makefile new file mode 100644 index 000000000000..8e3e940ccdd9 --- /dev/null +++ b/lkm/fpu/Makefile @@ -0,0 +1,10 @@ +# $Id: Makefile,v 1.4 1995/10/15 17:00:49 phk Exp $ + +.PATH: ${.CURDIR}/../../sys/i386/i386 +KMOD= fpu +SRCS= math_emulate.c +NOMAN= +PSEUDO_LKM= +CFLAGS+= -DLKM + +.include <bsd.kmod.mk> diff --git a/lkm/gnufpu/Makefile b/lkm/gnufpu/Makefile new file mode 100644 index 000000000000..4d52fd098642 --- /dev/null +++ b/lkm/gnufpu/Makefile @@ -0,0 +1,17 @@ +# $Id: Makefile,v 1.4 1995/10/15 17:00:49 phk Exp $ + +.PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul +KMOD= gnufpu +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 \ + polynomial.s reg_add_sub.c reg_compare.c reg_constant.c reg_div.s \ + reg_ld_str.c reg_u_mul.s reg_u_sub.s wm_shrx.s wm_sqrt.s +NOMAN= +PSEUDO_LKM= +CFLAGS+= -DLKM -I${.CURDIR}/../../sys/sys + +.s.o: + cpp -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o + +.include <bsd.kmod.mk> diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 62eca4cdcdbf..d5b608a0faa5 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,6 +1,6 @@ -# $Id: Makefile,v 1.16 1995/10/28 13:28:16 peter Exp $ +# $Id: Makefile,v 1.17 1995/10/28 17:46:03 peter Exp $ -SUBDIR= atapi cd9660 coff fdesc ibcs2 if_disc if_ppp if_sl if_tun \ +SUBDIR= atapi cd9660 coff fdesc fpu gnufpu ibcs2 if_disc if_ppp if_sl if_tun \ ipfw kernfs linux msdos nfs nullfs \ pcic portal procfs syscons umapfs union wcd # diff --git a/sys/modules/fpu/Makefile b/sys/modules/fpu/Makefile new file mode 100644 index 000000000000..8e3e940ccdd9 --- /dev/null +++ b/sys/modules/fpu/Makefile @@ -0,0 +1,10 @@ +# $Id: Makefile,v 1.4 1995/10/15 17:00:49 phk Exp $ + +.PATH: ${.CURDIR}/../../sys/i386/i386 +KMOD= fpu +SRCS= math_emulate.c +NOMAN= +PSEUDO_LKM= +CFLAGS+= -DLKM + +.include <bsd.kmod.mk> diff --git a/sys/modules/gnufpu/Makefile b/sys/modules/gnufpu/Makefile new file mode 100644 index 000000000000..4d52fd098642 --- /dev/null +++ b/sys/modules/gnufpu/Makefile @@ -0,0 +1,17 @@ +# $Id: Makefile,v 1.4 1995/10/15 17:00:49 phk Exp $ + +.PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul +KMOD= gnufpu +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 \ + polynomial.s reg_add_sub.c reg_compare.c reg_constant.c reg_div.s \ + reg_ld_str.c reg_u_mul.s reg_u_sub.s wm_shrx.s wm_sqrt.s +NOMAN= +PSEUDO_LKM= +CFLAGS+= -DLKM -I${.CURDIR}/../../sys/sys + +.s.o: + cpp -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o + +.include <bsd.kmod.mk> |