1# @(#)Makefile 8.2 (Berkeley) 3/21/94 2 3# Makefile for kernel tags files, init_sysent, etc. 4 5ARCH= i386 # luna68k news3400 pmax sparc tahoe vax 6 7all: 8 @echo "make tags, make links or init_sysent.c only" 9 10init_sysent.c syscalls.c ../sys/syscall.h ../sys/syscall-hide.h \ 11../sys/syscall.mk ../sys/sysproto.h: makesyscalls.sh syscalls.master 12 -mv -f init_sysent.c init_sysent.c.bak 13 -mv -f syscalls.c syscalls.c.bak 14 -mv -f ../sys/syscall.h ../sys/syscall.h.bak 15 -mv -f ../sys/syscall-hide.h ../sys/syscall-hide.h.bak 16 -mv -f ../sys/syscall.mk ../sys/syscall.mk.bak 17 -mv -f ../sys/sysproto.h ../sys/sysproto.h.bak 18 sh makesyscalls.sh syscalls.master 19 20# Kernel tags: 21# Tags files are built in the top-level directory for each architecture, 22# with a makefile listing the architecture-dependent files, etc. The list 23# of common files is in ./Make.tags.inc. Links to the correct tags file 24# are placed in each source directory. We need to have links to tags files 25# from the generic directories that are relative to the machine type, even 26# via remote mounts; therefore we use symlinks to $SYSTAGS, which points at 27# ${SYSDIR}/${MACHINE}/tags. 28 29SYSTAGS=/var/db/sys_tags 30SYSDIR=/sys 31 32# Directories in which to place tags links (other than machine-dependent) 33DGEN= conf \ 34 dev dev/scsi \ 35 hp hp/dev hp/hpux \ 36 kern libkern \ 37 miscfs miscfs/deadfs miscfs/fdesc miscfs/fifofs miscfs/kernfs \ 38 miscfs/lofs miscfs/nullfs miscfs/portal miscfs/procfs \ 39 miscfs/specfs miscfs/umapfs miscfs/union \ 40 net netccitt netinet netiso netns nfs scripts sys \ 41 ufs ufs/ffs ufs/lfs ufs/mfs ufs/ufs \ 42 vm 43 44tags:: 45 -for i in ${ARCH}; do \ 46 (cd ../$$i && make ${MFLAGS} tags); done 47 48links:: 49 rm -f ${SYSTAGS} 50 ln -s ${SYSDIR}/${MACHINE}/tags ${SYSTAGS} 51 -for i in ${DGEN}; do \ 52 (cd ../$$i && { rm -f tags; ln -s ${SYSTAGS} tags; }) done 53 -for i in ${ARCH}; do \ 54 (cd ../$$i && make ${MFLAGS} SYSTAGS=${SYSTAGS} links); done 55