Remove unnecessary -I$S; bsd.kmod.mk adds -isystem $S

This commit is contained in:
thorpej 2002-05-30 18:53:14 +00:00
parent 8bf2751b15
commit f944a0674f
21 changed files with 42 additions and 42 deletions

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:04 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:14 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/kern
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_a.out

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.4 2002/02/10 16:25:49 mrg Exp $
# $NetBSD: Makefile,v 1.5 2002/05/30 18:53:15 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/kern
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32 -DELFSIZE=32
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32 -DELFSIZE=32
KMOD= exec_elf

View File

@ -1,11 +1,11 @@
# $NetBSD: Makefile,v 1.4 2001/12/12 11:49:05 lukem Exp $
# $NetBSD: Makefile,v 1.5 2002/05/30 18:53:16 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/freebsd
.PATH: $S/compat/common
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_freebsd_aout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.4 2001/12/12 11:49:05 lukem Exp $
# $NetBSD: Makefile,v 1.5 2002/05/30 18:53:16 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/freebsd
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32
KMOD= exec_freebsd_elf

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:05 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:17 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/hpux
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_hpux_aout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:05 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:17 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/ibcs2
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_COFF
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_COFF
KMOD= exec_ibcs2_coff

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:06 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:18 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/ibcs2
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32
KMOD= exec_ibcs2_elf

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:06 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:18 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/ibcs2
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32 -DEXEC_ELF64
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32 -DEXEC_ELF64
KMOD= exec_ibcs2_xout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:06 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:19 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/linux/common
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT -DCOMPAT_LINUX
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT -DCOMPAT_LINUX
KMOD= exec_linux_aout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:06 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:19 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/linux/common
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32 -DEXEC_ELF64
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32 -DEXEC_ELF64
KMOD= exec_linux_elf

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:07 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:19 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/m68k4k
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_m68k4k

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:07 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:20 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/netbsd32
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT -DCOMPAT_NETBSD32
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT -DCOMPAT_NETBSD32
KMOD= exec_netbsd32_aout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:07 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:20 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/netbsd32
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32
KMOD= exec_netbsd32_elf

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:07 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:21 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/osf1
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ECOFF
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ECOFF
KMOD= exec_osf1_ecoff

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.2 2002/03/29 17:09:30 kent Exp $
# $NetBSD: Makefile,v 1.3 2002/05/30 18:53:22 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/pecoff
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DCOMPAT_PECOFF
CPPFLAGS+= -nostdinc -D_KERNEL -DCOMPAT_PECOFF
MKMAN= no

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:07 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:22 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/sunos32
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_sunos32_aout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:08 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:23 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/sunos
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_sunos_aout

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:08 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:24 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/svr4_32
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF32
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32
KMOD= exec_svr4_32_elf

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.5 2001/12/12 11:49:08 lukem Exp $
# $NetBSD: Makefile,v 1.6 2002/05/30 18:53:25 thorpej Exp $
.include "../Makefile.inc"
@ -10,7 +10,7 @@ ELFSIZE=32
.PATH: $S/compat/svr4
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ELF${ELFSIZE} \
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF${ELFSIZE} \
-DELFSIZE=${ELFSIZE}
KMOD= exec_svr4_elf

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.3 2001/12/12 11:49:08 lukem Exp $
# $NetBSD: Makefile,v 1.4 2002/05/30 18:53:25 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/ultrix
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_ECOFF
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ECOFF
KMOD= exec_ultrix_ecoff

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.4 2001/12/12 11:49:08 lukem Exp $
# $NetBSD: Makefile,v 1.5 2002/05/30 18:53:26 thorpej Exp $
.include "../Makefile.inc"
.PATH: $S/compat/vax1k
CPPFLAGS+= -nostdinc -I$S -D_KERNEL -DEXEC_AOUT
CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_AOUT
KMOD= exec_vax1k