Rework the way kernel include files are installed. In the new method,

as with user-land programs, include files are installed by each directory
in the tree that has includes to install.  (This allows more flexibility
as to what gets installed, makes 'partial installs' easier, and gives us
more options as to which machines' includes get installed at any given
time.)  The old SYS_INCLUDES={symlinks,copies} behaviours are _both_
still supported, though at least one bug in the 'symlinks' case is
fixed by this change.  Include files can't be build before installation,
so directories that have includes as targets (e.g. dev/pci) have to move
those targets into a different Makefile.
This commit is contained in:
cgd 1998-06-12 23:22:30 +00:00
parent 67856105fa
commit 651b44e211
106 changed files with 873 additions and 157 deletions

View File

@ -1,100 +1,11 @@
# $NetBSD: Makefile,v 1.28 1998/04/29 13:28:06 kleink Exp $
# $NetBSD: Makefile,v 1.29 1998/06/12 23:22:30 cgd Exp $
# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
# links.
SUBDIR+= arch/${MACHINE}
SUBDIR= adosfs arch dev isofs miscfs msdosfs net netatalk netccitt netinet \
netiso netnatm netns nfs sys ufs uvm vm
.if (${MACHINE_ARCH} != "alpha" && ${MACHINE_ARCH} != "mips" && \
${MACHINE_ARCH} != "powerpc")
SUBDIR+= lkm
.endif
LFILES= errno.h fcntl.h inttypes.h md5.h poll.h syslog.h termios.h
MFILES= float.h frame.h stdarg.h varargs.h
LDIRS= adosfs dev isofs miscfs msdosfs net netatalk netccitt netinet netiso \
netnatm netns nfs sys ufs uvm vm
# Change SYS_INCLUDE in bsd.own.mk or /etc/mk.conf to "symlinks" if you
# don't want copies
.include <bsd.own.mk>
SYS_INCLUDE?= copies
# If DESTDIR is set, we're probably building a release, so force "copies".
.if defined(DESTDIR) && (${DESTDIR} != "/" && !empty(DESTDIR))
SYS_INCLUDE= copies
.endif
.PHONY: includes
includes: ${SYS_INCLUDE}
@echo installing ${LFILES}
@-for i in ${LFILES}; do \
rm -f ${DESTDIR}/usr/include/$$i; \
ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \
done
@echo installing ${MFILES}
@-for i in ${MFILES}; do \
rm -f ${DESTDIR}/usr/include/$$i; \
ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \
done
.PHONY: copies
copies:
@echo copies: ${LDIRS}
@-for i in ${LDIRS}; do \
rm -rf ${DESTDIR}/usr/include/$$i; \
${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/$$i ; \
done
pax -rw -pa -L \
`find ${LDIRS} -follow -type f -name '*.h' '!' -path \
'netiso/xebec/*' -print` ${DESTDIR}/usr/include
(cd ${DESTDIR}/usr/include; find ${LDIRS} -type f | \
xargs chmod a=r)
(cd ${DESTDIR}/usr/include; find ${LDIRS} -type d | \
xargs chmod u=rwx,go=rx)
rm -rf ${DESTDIR}/usr/include/machine
${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/machine
pax -rw -pa -s "|arch/${MACHINE}/include||" \
arch/${MACHINE}/include/*.h \
${DESTDIR}/usr/include/machine
(cd ${DESTDIR}/usr/include; find machine -type f | \
xargs chmod a=r)
(cd ${DESTDIR}/usr/include; find machine -type d | \
xargs chmod u=rwx,go=rx)
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
if test ${MACHINE} != ${MACHINE_ARCH} -a \
-d arch/${MACHINE_ARCH}/include; then \
${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/${MACHINE_ARCH}; \
pax -rw -pa -s "|arch/${MACHINE_ARCH}/include||" \
arch/${MACHINE_ARCH}/include/*.h \
${DESTDIR}/usr/include/${MACHINE_ARCH}; \
(cd ${DESTDIR}/usr/include; find ${MACHINE_ARCH} -type f | \
xargs chmod a=r); \
(cd ${DESTDIR}/usr/include; find ${MACHINE_ARCH} -type d | \
xargs chmod u=rwx,go=rx); \
else \
ln -s machine ${DESTDIR}/usr/include/${MACHINE_ARCH}; \
fi
.PHONY: symlinks
symlinks:
@echo symlinks: ${LDIRS}
@for i in ${LDIRS}; do \
rm -rf ${DESTDIR}/usr/include/$$i; \
ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
done
rm -rf ${DESTDIR}/usr/include/machine
ln -s /sys/arch/${MACHINE}/include ${DESTDIR}/usr/include/machine
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
if test ${MACHINE} != ${MACHINE_ARCH} -a \
-d arch/${MACHINE_ARCH}/include ; then \
ln -s /sys/arch/${MACHINE_ARCH}/include \
${DESTDIR}/usr/include/${MACHINE_ARCH} ; \
else \
ln -s machine ${DESTDIR}/usr/include/${MACHINE_ARCH} ; \
fi
.include <bsd.subdir.mk>
.include <bsd.kinc.mk>

8
sys/adosfs/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:30 cgd Exp $
KDIR= /sys/adosfs
INCSDIR= /usr/include/adosfs
INCS= adosfs.h
.include <bsd.kinc.mk>

18
sys/arch/Makefile Normal file
View File

@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:31 cgd Exp $
# For now, we install the machine and arch includes, and symlink 'machine'
# to the location of the machine includes.
#
# Eventually, we should install everything.
SUBDIR= ${MACHINE}
.if ${MACHINE} != ${MACHINE_ARCH}
SUBDIR+= ${MACHINE_ARCH}
.endif
#SUBDIR= alpha amiga arm32 atari bebox hp300 i386 m68k mac68k macppc mips \
# mvme68k newsmips ofppc pc532 pica pmax powerpc sparc sun3 vax x68k
SYMLINKS= ${MACHINE} /usr/include/machine
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.10 1997/10/11 09:12:18 mycroft Exp $
# $NetBSD: Makefile,v 1.11 1998/06/12 23:22:32 cgd Exp $
# Makefile for alpha tags file and boot blocks
@ -24,6 +24,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:32 cgd Exp $
KDIR= /sys/arch/alpha/include
INCSDIR= /usr/include/alpha
INCS= alpha_cpu.h ansi.h aout_machdep.h asm.h autoconf.h bus.h cdefs.h \
cfbreg.h conf.h cpu.h cpuconf.h db_machdep.h disklabel.h \
ecoff_machdep.h elf_machdep.h endian.h fbio.h float.h frame.h ieee.h \
ieeefp.h intr.h intrcnt.h kbio.h kcore.h limits.h pal.h param.h pcb.h \
pmap.h proc.h profile.h prom.h psl.h pte.h ptrace.h reg.h rpb.h \
setjmp.h sfbreg.h signal.h stdarg.h types.h varargs.h vmparam.h \
vuid_event.h wsconsio.h z8530var.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.14 1997/10/11 09:11:17 mycroft Exp $
# $NetBSD: Makefile,v 1.15 1998/06/12 23:22:32 cgd Exp $
# Makefile for amiga tags file and boot blocks
@ -27,6 +27,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:33 cgd Exp $
KDIR= /sys/arch/amiga/include
INCSDIR= /usr/include/amiga
INCS= ansi.h aout_machdep.h asm.h bus.h cdefs.h conf.h cpu.h cpufunc.h \
db_machdep.h disklabel.h endian.h fbio.h float.h frame.h ieeefp.h \
intr.h kcore.h limits.h mtpr.h param.h pcb.h pmap.h proc.h profile.h \
psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h trap.h types.h \
varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.4 1997/10/11 09:10:25 mycroft Exp $
# $NetBSD: Makefile,v 1.5 1998/06/12 23:22:33 cgd Exp $
# Makefile for arm32 tags file and boot blocks
@ -24,6 +24,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR=
SUBDIR= include
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:33 cgd Exp $
KDIR= /sys/arch/arm32/include
INCSDIR= /usr/include/arm32
INCS= ansi.h aout_machdep.h asm.h beep.h bootconfig.h bus.h cdefs.h conf.h \
cpu.h cpufunc.h cpus.h db_machdep.h disklabel.h disklabel_acorn.h \
disklabel_mbr.h endian.h float.h fp.h frame.h ieee.h ieeefp.h iic.h \
intr.h io.h ipkdb.h irqhandler.h katelib.h kbd.h limits.h mouse.h \
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
rtc.h setjmp.h signal.h stdarg.h sysarch.h trap.h types.h undefined.h \
varargs.h vconsole.h vidc.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.3 1997/10/11 09:10:26 mycroft Exp $
# $NetBSD: Makefile,v 1.4 1998/06/12 23:22:34 cgd Exp $
# Makefile for atari tags file and boot blocks
@ -27,6 +27,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:34 cgd Exp $
KDIR= /sys/arch/atari/include
INCSDIR= /usr/include/atari
INCS= acia.h ahdilabel.h ansi.h aout_machdep.h asm.h bus.h cdefs.h cpu.h \
cpufunc.h db_machdep.h disklabel.h dma.h endian.h float.h frame.h \
ieeefp.h intr.h iomap.h kcore.h limits.h mfp.h msioctl.h mtpr.h \
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
scu.h setjmp.h signal.h stdarg.h trap.h types.h varargs.h video.h \
vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.2 1998/01/05 20:51:39 perry Exp $
# $NetBSD: Makefile,v 1.3 1998/06/12 23:22:35 cgd Exp $
#
NOPROG= noprog
NOMAN= noman
SUBDIR= stand
SUBDIR= include stand
obj: _SUBDIRUSE

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:35 cgd Exp $
KDIR= /sys/arch/bebox/include
INCSDIR= /usr/include/bebox
INCS= ansi.h aout_machdep.h asm.h bat.h bootinfo.h bus.h cdefs.h conf.h \
cpu.h cpufunc.h db_machdep.h disklabel.h display.h elf_machdep.h \
endian.h float.h fpu.h frame.h ieee.h ieeefp.h intr.h ipkdb.h kcore.h \
kgdb.h limits.h machine_type.h mouse.h param.h pcb.h pccons.h pio.h \
pmap.h powerpc.h proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h \
setjmp.h signal.h spkr.h stdarg.h trap.h types.h va-ppc.h varargs.h \
vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.9 1997/10/11 09:11:19 mycroft Exp $
# $NetBSD: Makefile,v 1.10 1998/06/12 23:22:35 cgd Exp $
# Makefile for hp300 tags file and boot blocks
@ -27,6 +27,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:36 cgd Exp $
KDIR= /sys/arch/hp300/include
INCSDIR= /usr/include/hp300
INCS= ansi.h aout_machdep.h asm.h autoconf.h bus.h cdefs.h cpu.h \
db_machdep.h disklabel.h endian.h float.h frame.h hp300spu.h \
hpux_machdep.h ieeefp.h intr.h kcore.h limits.h param.h pcb.h pmap.h \
proc.h profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h \
stdarg.h trap.h types.h varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.14 1998/04/13 21:54:30 frueauf Exp $
# $NetBSD: Makefile,v 1.15 1998/06/12 23:22:36 cgd Exp $
# Makefile for i386 tags file and boot blocks
@ -24,6 +24,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand isa/pcvt
SUBDIR= include stand isa/pcvt
.include <bsd.subdir.mk>

View File

@ -0,0 +1,15 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:36 cgd Exp $
KDIR= /sys/arch/i386/include
INCSDIR= /usr/include/i386
INCS= ansi.h aout_machdep.h apmvar.h asm.h bioscall.h bootinfo.h bus.h \
cdefs.h conf.h cpu.h cpufunc.h cputypes.h db_machdep.h disklabel.h \
elf_machdep.h endian.h float.h frame.h freebsd_machdep.h gdt.h \
ibcs2_machdep.h ieeefp.h intr.h joystick.h kcore.h limits.h \
linux_machdep.h mouse.h npx.h param.h pcb.h pccons.h pio.h pmap.h \
pmap.new.h proc.h profile.h psl.h pte.h ptrace.h reg.h segments.h \
setjmp.h signal.h specialreg.h spkr.h stdarg.h svr4_machdep.h \
sysarch.h trap.h tss.h types.h varargs.h vm86.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.1 1997/12/10 14:14:21 drochner Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:37 cgd Exp $
INCS= pcvt_ioctl.h
INCSDIR= /usr/include/machine
INCSDIR= /usr/include/i386
NOOBJ=
INCS= pcvt_ioctl.h
.include <bsd.prog.mk>
.include <bsd.kinc.mk>

5
sys/arch/m68k/Makefile Normal file
View File

@ -0,0 +1,5 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:37 cgd Exp $
SUBDIR= include
.include <bsd.kinc.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:38 cgd Exp $
KDIR= /sys/arch/m68k/include
INCSDIR= /usr/include/m68k
INCS= ansi.h aout_machdep.h asm.h asm_single.h cacheops.h cacheops_20.h \
cacheops_30.h cacheops_40.h cacheops_60.h cdefs.h cpu.h db_machdep.h \
endian.h float.h frame.h ieee.h ieeefp.h kcore.h limits.h m68k.h \
param.h pcb.h profile.h psl.h ptrace.h reg.h setjmp.h signal.h \
stdarg.h sysctl.h trap.h types.h varargs.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.4 1997/10/11 09:10:28 mycroft Exp $
# $NetBSD: Makefile,v 1.5 1998/06/12 23:22:38 cgd Exp $
# Makefile for mac68k tags file and boot blocks
@ -28,6 +28,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR=
SUBDIR= include
.include <bsd.subdir.mk>

View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:38 cgd Exp $
KDIR= /sys/arch/mac68k/include
INCSDIR= /usr/include/mac68k
INCS= adbsys.h ansi.h aout_machdep.h asm.h autoconf.h bus.h cdefs.h cpu.h \
db_machdep.h disklabel.h endian.h float.h frame.h grfioctl.h ieeefp.h \
intr.h iteioctl.h kcore.h keyboard.h limits.h param.h pcb.h pio.h \
pmap.h proc.h profile.h psc.h psl.h pte.h ptrace.h reg.h scsi_5380.h \
setjmp.h signal.h stdarg.h trap.h types.h varargs.h viareg.h \
vmparam.h z8530var.h
.include <bsd.kinc.mk>

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile,v 1.1 1998/05/15 10:15:45 tsubai Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:39 cgd Exp $
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:39 cgd Exp $
KDIR= /sys/arch/macppc/include
INCSDIR= /usr/include/macppc
INCS= adbsys.h ansi.h aout_machdep.h asm.h autoconf.h bat.h bus.h cdefs.h \
cpu.h db_machdep.h disklabel.h elf_machdep.h endian.h float.h fpu.h \
frame.h grfioctl.h ieee.h ieeefp.h intr.h ipkdb.h iteioctl.h kcore.h \
keyboard.h limits.h machine_type.h param.h pcb.h pio.h pmap.h \
powerpc.h proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h \
setjmp.h signal.h stdarg.h trap.h types.h va-ppc.h varargs.h \
vmparam.h z8530var.h
.include <bsd.kinc.mk>

5
sys/arch/mips/Makefile Normal file
View File

@ -0,0 +1,5 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:39 cgd Exp $
SUBDIR= include
.include <bsd.kinc.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:39 cgd Exp $
KDIR= /sys/arch/mips/include
INCSDIR= /usr/include/mips
INCS= ansi.h aout_machdep.h asm.h bsd-aout.h cachectl.h cdefs.h conf.h \
cpu.h cpuregs.h db_machdep.h ecoff_machdep.h elf.h elf_machdep.h \
endian.h float.h ieeefp.h intr.h kcore.h kdbparam.h limits.h locore.h \
mips1_pte.h mips3_pte.h mips_opcode.h mips_param.h pcb.h pmap.h \
proc.h profile.h psl.h pte.h ptrace.h reg.h regdef.h regnum.h reloc.h \
setjmp.h signal.h stdarg.h sysarch.h trap.h types.h varargs.h \
vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile,v 1.1.1.1 1995/07/25 23:11:53 chuck Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:40 cgd Exp $
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:40 cgd Exp $
KDIR= /sys/arch/mvme68k/include
INCSDIR= /usr/include/mvme68k
INCS= ansi.h aout_machdep.h asm.h autoconf.h cdefs.h cpu.h db_machdep.h \
disklabel.h endian.h float.h frame.h ieeefp.h kcore.h limits.h \
param.h pcb.h pmap.h proc.h profile.h prom.h psl.h pte.h ptrace.h \
reg.h setjmp.h signal.h stdarg.h trap.h types.h varargs.h vmparam.h \
z8530var.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 1998/03/05 15:03:20 tsubai Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:41 cgd Exp $
# Makefile for newsmips tags file
@ -26,4 +26,6 @@ links:
-for i in ${DNEWSMIPS}; do \
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= include
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:41 cgd Exp $
KDIR= /sys/arch/newsmips/include
INCSDIR= /usr/include/newsmips
INCS= adrsmap.h ansi.h aout_machdep.h autoconf.h bsd-aout.h cdefs.h conf.h \
cpu.h db_machdep.h disklabel.h ecoff_machdep.h elf.h elf_machdep.h \
endian.h float.h framebuf.h ieeefp.h intr.h kcore.h kdbparam.h \
keyboard.h limits.h locore.h machConst.h mips_opcode.h mouse.h \
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
regdef.h regnum.h reloc.h setjmp.h signal.h stdarg.h trap.h types.h \
va-mips.h varargs.h vmparam.h z8530var.h
.include <bsd.kinc.mk>

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile,v 1.4 1997/10/11 08:44:49 mycroft Exp $
# $NetBSD: Makefile,v 1.5 1998/06/12 23:22:41 cgd Exp $
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:42 cgd Exp $
KDIR= /sys/arch/ofppc/include
INCSDIR= /usr/include/ofppc
INCS= ansi.h aout_machdep.h asm.h bat.h cdefs.h cpu.h db_machdep.h \
disklabel.h elf_machdep.h endian.h float.h fpu.h frame.h ieee.h \
ieeefp.h ipkdb.h irq.h kcore.h limits.h machine_type.h param.h pcb.h \
pmap.h powerpc.h proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h \
setjmp.h signal.h stdarg.h trap.h types.h va-ppc.h varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 1997/10/11 09:12:21 mycroft Exp $
# $NetBSD: Makefile,v 1.7 1998/06/12 23:22:42 cgd Exp $
# Makefile for pc532 tags file and boot blocks
@ -24,6 +24,6 @@ links:
cd ../$$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:42 cgd Exp $
KDIR= /sys/arch/pc532/include
INCSDIR= /usr/include/pc532
INCS= ansi.h aout_machdep.h asm.h autoconf.h cdefs.h conf.h cpu.h cpufunc.h \
db_machdep.h disklabel.h endian.h float.h fpu.h frame.h icu.h \
ieeefp.h jmpbuf.h kcore.h limits.h mtpr.h param.h pcb.h pmap.h \
pmap.new.h proc.h profile.h psl.h pte.h ptrace.h reg.h setjmp.h \
signal.h stdarg.h trap.h types.h varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.3 1997/10/11 09:10:29 mycroft Exp $
# $NetBSD: Makefile,v 1.4 1998/06/12 23:22:43 cgd Exp $
# Makefile for pica tags file and boot blocks
@ -13,7 +13,7 @@ APICA= ../pica/pica/*.s
# Directories in which to place tags links
DPICA= dev dist include pica
.include "../kern/Make.tags.inc"
.include "../../kern/Make.tags.inc"
tags:
-ctags -wdtf ${TPICA} ${SPICA} ${SMIPS} ${COMM}
@ -27,6 +27,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR=
SUBDIR= include
.include <bsd.subdir.mk>

View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:43 cgd Exp $
KDIR= /sys/arch/pica/include
INCSDIR= /usr/include/pica
INCS= ansi.h aout_machdep.h asm.h autoconf.h bsd-aout.h bus.h cdefs.h cpu.h \
disklabel.h display.h ecoff_machdep.h elf.h elf_machdep.h endian.h \
float.h ieeefp.h kbdreg.h kcore.h kdbparam.h limits.h machAsmDefs.h \
machConst.h mips_opcode.h mouse.h param.h pcb.h pccons.h pio.h pmap.h \
proc.h profile.h psl.h pte.h ptrace.h reg.h regdef.h regnum.h reloc.h \
setjmp.h signal.h stdarg.h trap.h types.h varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.9 1997/10/11 09:12:22 mycroft Exp $
# $NetBSD: Makefile,v 1.10 1998/06/12 23:22:43 cgd Exp $
# Makefile for pmax tags file and boot blocks
@ -27,6 +27,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:44 cgd Exp $
KDIR= /sys/arch/pmax/include
INCSDIR= /usr/include/pmax
INCS= ansi.h aout_machdep.h autoconf.h bsd-aout.h bus.h cdefs.h \
clock_machdep.h conf.h cpu.h db_machdep.h dc7085cons.h disklabel.h \
ecoff_machdep.h elf.h elf_machdep.h endian.h fbio.h fbvar.h float.h \
ieeefp.h intr.h kcore.h kdbparam.h limits.h locore.h mips_opcode.h \
param.h pcb.h pmap.h pmioctl.h proc.h profile.h psl.h pte.h ptrace.h \
reg.h regdef.h regnum.h reloc.h setjmp.h signal.h stdarg.h sysconf.h \
tc_machdep.h trap.h types.h varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,5 @@
# $NetBSD: Makefile,v 1.6 1998/06/12 23:22:44 cgd Exp $
SUBDIR= include
.include <bsd.kinc.mk>

View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:44 cgd Exp $
KDIR= /sys/arch/powerpc/include
INCSDIR= /usr/include/powerpc
INCS= ansi.h aout_machdep.h asm.h bat.h cdefs.h db_machdep.h elf_machdep.h \
endian.h float.h fpu.h frame.h ieee.h ieeefp.h ipkdb.h kcore.h \
limits.h machine_type.h param.h pcb.h pmap.h proc.h profile.h psl.h \
pte.h ptrace.h reg.h reloc.h setjmp.h signal.h stdarg.h trap.h \
types.h va-ppc.h varargs.h vmparam.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 1997/10/11 09:10:31 mycroft Exp $
# $NetBSD: Makefile,v 1.7 1998/06/12 23:22:45 cgd Exp $
# Makefile for sparc tags file and boot blocks
@ -22,6 +22,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,15 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:45 cgd Exp $
KDIR= /sys/arch/sparc/include
INCSDIR= /usr/include/sparc
INCS= ansi.h aout_machdep.h asm.h autoconf.h bsd_audioio.h bsd_openprom.h \
bus.h cdefs.h cgtworeg.h conf.h cpu.h ctlreg.h db_machdep.h \
disklabel.h eeprom.h elf_machdep.h endian.h fbio.h fbvar.h float.h \
frame.h fsr.h idprom.h ieee.h ieeefp.h instr.h kbd.h kbio.h kcore.h \
limits.h mbppio.h oldmon.h openpromio.h param.h pcb.h pmap.h proc.h \
profile.h psl.h pte.h ptrace.h reg.h reloc.h remote-sl.h setjmp.h \
signal.h stdarg.h sun_disklabel.h svr4_machdep.h trap.h types.h \
varargs.h vmparam.h vuid_event.h z8530var.h
.include <bsd.kinc.mk>

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile,v 1.2 1995/07/05 19:04:23 gwr Exp $
# $NetBSD: Makefile,v 1.3 1998/06/12 23:22:45 cgd Exp $
SUBDIR= stand
SUBDIR= include stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:46 cgd Exp $
KDIR= /sys/arch/sun3/include
INCSDIR= /usr/include/sun3
INCS= ansi.h aout_machdep.h asm.h autoconf.h cdefs.h cg2reg.h cpu.h \
db_machdep.h disklabel.h dvma.h dvma3.h dvma3x.h eeprom.h endian.h \
fbio.h float.h frame.h idprom.h ieeefp.h kbd.h kbio.h kcore.h leds.h \
limits.h mc68851.h mon.h param.h param3.h param3x.h pcb.h pmap.h \
pmap3.h pmap3x.h proc.h profile.h psl.h pte.h pte3.h pte3x.h ptrace.h \
reg.h setjmp.h signal.h stdarg.h sun_disklabel.h trap.h types.h \
varargs.h vmparam.h vmparam3.h vmparam3x.h vuid_event.h z8530var.h
.include <bsd.kinc.mk>

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile,v 1.1 1996/03/16 11:03:11 ragge Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:46 cgd Exp $
#
SUBDIR= boot
SUBDIR= include boot
.include <bsd.subdir.mk>

View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:46 cgd Exp $
KDIR= /sys/arch/vax/include
INCSDIR= /usr/include/vax
INCS= ansi.h aout_machdep.h asm.h cdefs.h clock.h cpu.h db_machdep.h \
disklabel.h endian.h float.h frame.h ioa.h ka410.h ka420.h ka43.h \
ka630.h ka650.h ka750.h ka820.h limits.h macros.h mtpr.h nexus.h \
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h qdioctl.h \
qdreg.h qduser.h qevent.h reg.h rpb.h rsp.h scb.h setjmp.h sid.h \
signal.h stdarg.h trap.h types.h uvax.h varargs.h vmparam.h vsbus.h
.include <bsd.kinc.mk>

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 1997/10/19 11:03:38 oki Exp $
# $NetBSD: Makefile,v 1.7 1998/06/12 23:22:47 cgd Exp $
# Makefile for x68k tags file and boot blocks
@ -27,6 +27,6 @@ links:
cd $$i && rm -f tags; ln -s ../tags tags; done
SUBDIR= usr.bin usr.sbin stand
SUBDIR= include usr.bin usr.sbin stand
.include <bsd.subdir.mk>

View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:47 cgd Exp $
KDIR= /sys/arch/x68k/include
INCSDIR= /usr/include/x68k
INCS= ansi.h aout_machdep.h asm.h bsd_audioio.h cdefs.h cpu.h cpufunc.h \
db_machdep.h disklabel.h endian.h float.h frame.h ieeefp.h kbd.h \
kbio.h kcore.h limits.h opmbellio.h param.h pcb.h pci_machdep.h \
pmap.h powioctl.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
remote-sl.h setjmp.h signal.h sram.h stdarg.h trap.h types.h \
varargs.h vmparam.h vuid_event.h
.include <bsd.kinc.mk>

12
sys/dev/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:48 cgd Exp $
SUBDIR= eisa ata vme ic isa isapnp microcode ofw pci rcons sun tc dec scsipi \
pcmcia i2c mii ofisa pckbc wscons
KDIR= /sys/dev
INCSDIR= /usr/include/dev
INCS= auconv.h audio_if.h audiovar.h ccdvar.h clock_subr.h cons.h md.h \
mulaw.h vndvar.h
.include <bsd.kinc.mk>

7
sys/dev/ata/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:48 cgd Exp $
INCSDIR= /usr/include/dev/ata
INCS= wdlink.h
.include <bsd.kinc.mk>

7
sys/dev/dec/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:49 cgd Exp $
INCSDIR= /usr/include/dev/dec
INCS= clockvar.h lk201.h mcclock_pad32.h mcclockvar.h
.include <bsd.kinc.mk>

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.1 1996/02/26 23:46:17 cgd Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:49 cgd Exp $
AWK= awk
INCSDIR= /usr/include/dev/eisa
eisadevs.h eisadevs_data.h: eisadevs devlist2h.awk
/bin/rm -f eisadevs.h eisadevs_data.h
${AWK} -f devlist2h.awk eisadevs
INCS= ahbreg.h eisadevs.h eisadevs_data.h eisareg.h eisavar.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile.eisadevs,v 1.1 1998/06/12 23:22:49 cgd Exp $
AWK= awk
eisadevs.h eisadevs_data.h: eisadevs devlist2h.awk
/bin/rm -f eisadevs.h eisadevs_data.h
${AWK} -f devlist2h.awk eisadevs

7
sys/dev/i2c/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:49 cgd Exp $
INCSDIR= /usr/include/dev/i2c
INCS= i2c_bus.h i2c_eeprom.h
.include <bsd.kinc.mk>

22
sys/dev/ic/Makefile Normal file
View File

@ -0,0 +1,22 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:50 cgd Exp $
INCSDIR= /usr/include/dev/ic
INCS= ad1848reg.h ahareg.h ahavar.h aic6360reg.h aic6360var.h aic7xxxreg.h \
aic7xxxvar.h am7930reg.h am7990reg.h am7990var.h bhareg.h bhavar.h \
bt485reg.h cd1190reg.h cd1400reg.h comreg.h comvar.h cs4231reg.h \
cyreg.h cyvar.h dc21040reg.h dp8390reg.h dp8390var.h ds.h elink3reg.h \
elink3var.h hayespreg.h i8042reg.h i82365reg.h i82365var.h i8237reg.h \
i8253reg.h i82586reg.h i82586var.h i82595reg.h ics2101reg.h \
intersil7170.h interwavereg.h interwavevar.h ispmbox.h ispreg.h \
ispvar.h lemacreg.h lemacvar.h lptreg.h lptvar.h mb86960reg.h \
mb86960var.h mc146818reg.h mc6845reg.h midwayreg.h midwayvar.h \
ncr5380reg.h ncr5380var.h ncr53c9xreg.h ncr53c9xvar.h ne2000reg.h \
ne2000var.h nec765reg.h ns16450reg.h ns16550reg.h opl3sa3.h \
pcdisplay.h pcdisplayvar.h pdqreg.h pdqvar.h rrunnerreg.h \
rrunnervar.h smc83c170reg.h smc83c170var.h smc90cx6reg.h \
smc91cxxreg.h smc91cxxvar.h smc93cx6var.h st16650reg.h \
tms320av110reg.h tms320av110var.h uhareg.h uhavar.h vgareg.h vgavar.h \
wdcreg.h wdcvar.h z8530reg.h z8530sc.h
.include <bsd.kinc.mk>

13
sys/dev/isa/Makefile Normal file
View File

@ -0,0 +1,13 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:50 cgd Exp $
INCSDIR= /usr/include/dev/isa
INCS= ad1848var.h ariareg.h com_multi.h cs4231var.h elink.h espvar.h \
gusreg.h ics2101var.h if_aireg.h if_ecreg.h if_efreg.h if_egreg.h \
if_elreg.h if_fereg.h if_ixreg.h if_levar.h if_wereg.h isadmareg.h \
isadmavar.h isareg.h isavar.h madreg.h mcdreg.h pasreg.h \
pcdisplayvar.h pckbcvar.h pcppireg.h pcppivar.h pssreg.h satlinkio.h \
satlinkreg.h sbdspvar.h sbreg.h sbvar.h spkrio.h vga_isavar.h \
wdsreg.h wssreg.h wssvar.h wtreg.h ymvar.h
.include <bsd.kinc.mk>

7
sys/dev/isapnp/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:51 cgd Exp $
INCSDIR= /usr/include/dev/isapnp
INCS= if_levar.h isapnpreg.h isapnpvar.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:51 cgd Exp $
SUBDIR= aic7xxx isp
INCSDIR= /usr/include/dev/microcode
.include <bsd.kinc.mk>

View File

@ -1,9 +1,7 @@
# $NetBSD: Makefile,v 1.2 1998/01/05 07:31:11 perry Exp $
# $NetBSD: Makefile,v 1.3 1998/06/12 23:22:51 cgd Exp $
aic7xxx_seq.h: aic7xxx_asm aic7xxx.seq
./aic7xxx_asm -o ${.TARGET} aic7xxx.seq
INCSDIR= /usr/include/dev/microcode/aic7xxx
aic7xxx_asm: aic7xxx_asm.o
${CC} -o $@ aic7xxx_asm.o
INCS= aic7xxx_seq.h
aic7xxx_asm.o: aic7xxx_asm.c
.include <bsd.kinc.mk>

View File

@ -0,0 +1,9 @@
# $NetBSD: Makefile.sequencer,v 1.1 1998/06/12 23:22:52 cgd Exp $
aic7xxx_seq.h: aic7xxx_asm aic7xxx.seq
./aic7xxx_asm -o ${.TARGET} aic7xxx.seq
aic7xxx_asm: aic7xxx_asm.o
${CC} -o $@ aic7xxx_asm.o
aic7xxx_asm.o: aic7xxx_asm.c

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:52 cgd Exp $
INCSDIR= /usr/include/dev/microcode/isp
INCS= asm_pci.h asm_sbus.h
.include <bsd.kinc.mk>

7
sys/dev/mii/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:52 cgd Exp $
INCSDIR= /usr/include/dev/mii
INCS= generic_phy.h mii_adapter.h mii_adapters_id.h mii_phy.h tlphy.h
.include <bsd.kinc.mk>

7
sys/dev/ofisa/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:52 cgd Exp $
INCSDIR= /usr/include/dev/ofisa
INCS= ofisavar.h
.include <bsd.kinc.mk>

7
sys/dev/ofw/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:53 cgd Exp $
INCSDIR= /usr/include/dev/ofw
INCS= openfirm.h
.include <bsd.kinc.mk>

View File

@ -1,7 +1,9 @@
# $NetBSD: Makefile,v 1.1 1995/06/18 01:07:04 cgd Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:53 cgd Exp $
AWK= awk
INCSDIR= /usr/include/dev/pci
pcidevs.h pcidevs_data.h: pcidevs devlist2h.awk
/bin/rm -f pcidevs.h pcidevs_data.h
${AWK} -f devlist2h.awk pcidevs
INCS= if_devar.h if_fxpreg.h if_fxpvar.h if_levar.h if_tlregs.h ncrreg.h \
pcidevs.h pcidevs_data.h pciidereg.h pciidevar.h pcireg.h pcivar.h \
ppbreg.h tgareg.h tgavar.h vga_pcivar.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile.pcidevs,v 1.1 1998/06/12 23:22:53 cgd Exp $
AWK= awk
pcidevs.h pcidevs_data.h: pcidevs devlist2h.awk
/bin/rm -f pcidevs.h pcidevs_data.h
${AWK} -f devlist2h.awk pcidevs

7
sys/dev/pckbc/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:54 cgd Exp $
INCSDIR= /usr/include/dev/pckbc
INCS= pckbdreg.h pckbdvar.h psmreg.h
.include <bsd.kinc.mk>

7
sys/dev/pcmcia/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:54 cgd Exp $
INCSDIR= /usr/include/dev/pcmcia
INCS= pcmciachip.h pcmciareg.h pcmciavar.h
.include <bsd.kinc.mk>

7
sys/dev/rcons/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:55 cgd Exp $
INCSDIR= /usr/include/dev/rcons
INCS= raster.h rcons.h rcons_subr.h
.include <bsd.kinc.mk>

11
sys/dev/scsipi/Makefile Normal file
View File

@ -0,0 +1,11 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:55 cgd Exp $
INCSDIR= /usr/include/dev/scsipi
INCS= atapi_all.h atapi_cd.h atapi_disk.h atapiconf.h cdvar.h scsi_all.h \
scsi_cd.h scsi_changer.h scsi_ctron_ether.h scsi_disk.h \
scsi_message.h scsi_scanner.h scsi_tape.h scsiconf.h scsipi_all.h \
scsipi_base.h scsipi_cd.h scsipi_debug.h scsipi_disk.h scsipiconf.h \
sdvar.h ss_mustek.h ssvar.h
.include <bsd.kinc.mk>

7
sys/dev/sun/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:55 cgd Exp $
INCSDIR= /usr/include/dev/sun
INCS= event_var.h kbd_tables.h kbd_xlate.h
.include <bsd.kinc.mk>

View File

@ -1,7 +1,8 @@
# $NetBSD: Makefile,v 1.1 1996/03/02 01:16:47 cgd Exp $
# $NetBSD: Makefile,v 1.2 1998/06/12 23:22:58 cgd Exp $
AWK= awk
INCSDIR= /usr/include/dev/tc
tcdevs.h tcdevs_data.h: tcdevs devlist2h.awk
/bin/rm -f tcdevs.h tcdevs_data.h
${AWK} -f devlist2h.awk tcdevs
INCS= ascvar.h if_levar.h ioasicreg.h ioasicvar.h sticreg.h sticvar.h \
tcdevs.h tcdevs_data.h tcreg.h tcvar.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile.tcdevs,v 1.1 1998/06/12 23:22:59 cgd Exp $
AWK= awk
tcdevs.h tcdevs_data.h: tcdevs devlist2h.awk
/bin/rm -f tcdevs.h tcdevs_data.h
${AWK} -f devlist2h.awk tcdevs

7
sys/dev/vme/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:59 cgd Exp $
INCSDIR= /usr/include/dev/vme
INCS= vmevar.h xdreg.h xdvar.h xio.h xyreg.h xyvar.h
.include <bsd.kinc.mk>

9
sys/dev/wscons/Makefile Normal file
View File

@ -0,0 +1,9 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:22:59 cgd Exp $
INCSDIR= /usr/include/dev/wscons
INCS= ascii.h wscons_callbacks.h wscons_raster.h wscons_rfont.h wsconsio.h \
wsdisplay_usl_io.h wsdisplayvar.h wsemulvar.h wseventvar.h \
wskbdmap_mfii.h wskbdvar.h wsksymdef.h wsksymvar.h wsmousevar.h
.include <bsd.kinc.mk>

8
sys/isofs/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:00 cgd Exp $
SUBDIR= cd9660
KDIR= /sys/isofs
INCSDIR= /usr/include/isofs
.include <bsd.kinc.mk>

View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:00 cgd Exp $
INCSDIR= /usr/include/isofs/cd9660
INCS= cd9660_extern.h cd9660_mount.h cd9660_node.h cd9660_rrip.h iso.h \
iso_rrip.h
.include <bsd.kinc.mk>

8
sys/miscfs/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:00 cgd Exp $
SUBDIR= fdesc fifofs genfs kernfs nullfs portal procfs specfs umapfs union
KDIR= /sys/miscfs
INCSDIR= /usr/include/miscfs
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:01 cgd Exp $
INCSDIR= /usr/include/miscfs/fdesc
INCS= fdesc.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:01 cgd Exp $
INCSDIR= /usr/include/miscfs/fifofs
INCS= fifo.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:02 cgd Exp $
INCSDIR= /usr/include/miscfs/genfs
INCS= genfs.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:02 cgd Exp $
INCSDIR= /usr/include/miscfs/kernfs
INCS= kernfs.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:02 cgd Exp $
INCSDIR= /usr/include/miscfs/nullfs
INCS= null.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:03 cgd Exp $
INCSDIR= /usr/include/miscfs/portal
INCS= portal.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:04 cgd Exp $
INCSDIR= /usr/include/miscfs/procfs
INCS= procfs.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:04 cgd Exp $
INCSDIR= /usr/include/miscfs/specfs
INCS= specdev.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:05 cgd Exp $
INCSDIR= /usr/include/miscfs/umapfs
INCS= umap.h
.include <bsd.kinc.mk>

View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:05 cgd Exp $
INCSDIR= /usr/include/miscfs/union
INCS= union.h
.include <bsd.kinc.mk>

8
sys/msdosfs/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:06 cgd Exp $
KDIR= /sys/msdosfs
INCSDIR= /usr/include/msdosfs
INCS= bootsect.h bpb.h denode.h direntry.h fat.h msdosfsmount.h
.include <bsd.kinc.mk>

12
sys/net/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:06 cgd Exp $
KDIR= /sys/net
INCSDIR= /usr/include/net
INCS= bpf.h bpfdesc.h ethertypes.h if.h if_arc.h if_arp.h if_atm.h if_dl.h \
if_ether.h if_fddi.h if_hippi.h if_llc.h if_media.h if_ppp.h \
if_pppvar.h if_slvar.h if_stripvar.h if_tun.h if_types.h netisr.h \
pfil.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h slcompress.h \
slip.h zlib.h
.include <bsd.kinc.mk>

8
sys/netatalk/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:07 cgd Exp $
KDIR= /sys/netatalk
INCSDIR= /usr/include/netatalk
INCS= aarp.h at.h at_extern.h at_var.h ddp.h ddp_var.h phase2.h
.include <bsd.kinc.mk>

9
sys/netccitt/Makefile Normal file
View File

@ -0,0 +1,9 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:07 cgd Exp $
KDIR= /sys/netccitt
INCSDIR= /usr/include/netccitt
INCS= dll.h hd_var.h hdlc.h llc_var.h pk.h pk_extern.h pk_var.h x25.h \
x25acct.h x25err.h
.include <bsd.kinc.mk>

12
sys/netinet/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:07 cgd Exp $
KDIR= /sys/netinet
INCSDIR= /usr/include/netinet
INCS= icmp_var.h if_atm.h if_ether.h if_inarp.h igmp.h igmp_var.h in.h \
in_pcb.h in_systm.h in_var.h ip.h ip_auth.h ip_compat.h ip_fil.h \
ip_frag.h ip_icmp.h ip_mroute.h ip_nat.h ip_proxy.h ip_state.h \
ip_var.h tcp.h tcp_debug.h tcp_fsm.h tcp_seq.h tcp_timer.h tcp_var.h \
tcpip.h udp.h udp_var.h
.include <bsd.kinc.mk>

12
sys/netiso/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:08 cgd Exp $
KDIR= /sys/netiso
INCSDIR= /usr/include/netiso
INCS= argo_debug.h clnl.h clnp.h clnp_stat.h cltp_var.h cons.h cons_pcb.h \
eonvar.h esis.h idrp_var.h iso.h iso_errno.h iso_pcb.h iso_snpac.h \
iso_var.h tp_clnp.h tp_events.h tp_ip.h tp_meas.h tp_param.h tp_pcb.h \
tp_seq.h tp_stat.h tp_states.h tp_timer.h tp_tpdu.h tp_trace.h \
tp_user.h tp_var.h
.include <bsd.kinc.mk>

8
sys/netnatm/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:08 cgd Exp $
KDIR= /sys/netnatm
INCSDIR= /usr/include/netnatm
INCS= natm.h
.include <bsd.kinc.mk>

9
sys/netns/Makefile Normal file
View File

@ -0,0 +1,9 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:09 cgd Exp $
KDIR= /sys/netns
INCSDIR= /usr/include/netns
INCS= idp.h idp_var.h ns.h ns_error.h ns_if.h ns_pcb.h ns_var.h sp.h \
spidp.h spp_debug.h spp_timer.h spp_var.h
.include <bsd.kinc.mk>

9
sys/nfs/Makefile Normal file
View File

@ -0,0 +1,9 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:09 cgd Exp $
KDIR= /sys/nfs
INCSDIR= /usr/include/nfs
INCS= krpc.h nfs.h nfs_var.h nfsdiskless.h nfsm_subs.h nfsmount.h nfsnode.h \
nfsproto.h nfsrtt.h nfsrvcache.h nqnfs.h rpcv2.h xdr_subs.h
.include <bsd.kinc.mk>

30
sys/sys/Makefile Normal file
View File

@ -0,0 +1,30 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:10 cgd Exp $
KDIR= /sys/sys
INCSDIR= /usr/include/sys
INCS= acct.h audioio.h buf.h callout.h cdefs.h cdio.h chio.h clist.h conf.h \
core.h device.h dir.h dirent.h disk.h disklabel.h dkbad.h dkio.h \
dkstat.h dmap.h domain.h errno.h exec.h exec_aout.h exec_ecoff.h \
exec_elf.h exec_script.h extent.h fcntl.h fdio.h featuretest.h file.h \
filedesc.h filio.h gmon.h inttypes.h ioccom.h ioctl.h ioctl_compat.h \
ipc.h kcore.h kernel.h kgdb.h ktrace.h lkm.h localedef.h lock.h \
lockf.h malloc.h map.h mbuf.h md5.h mman.h mount.h msg.h msgbuf.h \
mtio.h namei.h param.h poll.h pool.h proc.h protosw.h ptrace.h \
queue.h reboot.h resource.h resourcevar.h rnd.h scanio.h scsiio.h \
select.h sem.h sha1.h shm.h signal.h signalvar.h socket.h socketvar.h \
sockio.h stat.h syscall.h syscallargs.h sysctl.h syslimits.h syslog.h \
systm.h tablet.h termios.h time.h timeb.h timepps.h times.h timex.h \
tprintf.h trace.h tty.h ttychars.h ttycom.h ttydefaults.h ttydev.h \
types.h ucred.h uio.h un.h unistd.h unpcb.h user.h utsname.h \
vadvise.h vcmd.h vlimit.h vmmeter.h vnode.h vnode_if.h vsio.h wait.h
SYMLINKS= sys/errno.h /usr/include/errno.h \
sys/fcntl.h /usr/include/fcntl.h \
sys/inttypes.h /usr/include/inttypes.h \
sys/md5.h /usr/include/md5.h \
sys/poll.h /usr/include/poll.h \
sys/syslog.h /usr/include/syslog.h \
sys/termios.h /usr/include/termios.h
.include <bsd.kinc.mk>

8
sys/ufs/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:10 cgd Exp $
SUBDIR= ffs lfs mfs ufs ext2fs
KDIR= /sys/ufs
INCSDIR= /usr/include/ufs
.include <bsd.kinc.mk>

7
sys/ufs/ext2fs/Makefile Normal file
View File

@ -0,0 +1,7 @@
# $NetBSD: Makefile,v 1.1 1998/06/12 23:23:11 cgd Exp $
INCSDIR= /usr/include/ufs/ext2fs
INCS= ext2fs.h ext2fs_dinode.h ext2fs_dir.h ext2fs_extern.h
.include <bsd.kinc.mk>

Some files were not shown because too many files have changed in this diff Show More