diff options
author | bde <bde@FreeBSD.org> | 1997-08-26 13:49:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-08-26 13:49:26 +0000 |
commit | e9c8d2cf8aff7b55ab99526eb1cb23f9c4ffb0e6 (patch) | |
tree | ec0d7e087a2f6506199a56ec1526be3980272c2f | |
parent | 1bdac08e33c6fa00dadb177ba8c6d9fffdb2b771 (diff) | |
download | FreeBSD-src-e9c8d2cf8aff7b55ab99526eb1cb23f9c4ffb0e6.zip FreeBSD-src-e9c8d2cf8aff7b55ab99526eb1cb23f9c4ffb0e6.tar.gz |
Removed bogus -I path in CFLAGS.
-rw-r--r-- | lkm/gnufpu/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/gnufpu/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lkm/gnufpu/Makefile b/lkm/gnufpu/Makefile index 3d9b07f..85610c2 100644 --- a/lkm/gnufpu/Makefile +++ b/lkm/gnufpu/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:47:52 peter Exp $ +# $Id: Makefile,v 1.4 1997/07/20 08:46:30 bde Exp $ .PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul KMOD= gnufpu_mod @@ -9,7 +9,7 @@ SRCS= div_small.s errors.c fpu_arith.c fpu_aux.c fpu_entry.c fpu_etc.c \ 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 +CFLAGS+= -DLKM .s.o: ${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c \ diff --git a/sys/modules/gnufpu/Makefile b/sys/modules/gnufpu/Makefile index 3d9b07f..85610c2 100644 --- a/sys/modules/gnufpu/Makefile +++ b/sys/modules/gnufpu/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:47:52 peter Exp $ +# $Id: Makefile,v 1.4 1997/07/20 08:46:30 bde Exp $ .PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul KMOD= gnufpu_mod @@ -9,7 +9,7 @@ SRCS= div_small.s errors.c fpu_arith.c fpu_aux.c fpu_entry.c fpu_etc.c \ 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 +CFLAGS+= -DLKM .s.o: ${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c \ |