Home | History | Annotate | Line # | Download | only in kern
Makefile revision 1.11
      1  1.11    lukem #	$NetBSD: Makefile,v 1.11 2003/10/26 07:25:38 lukem Exp $
      2   1.6    perry #
      3   1.6    perry #	from: @(#)Makefile	8.2 (Berkeley) 3/21/94
      4   1.1      cgd 
      5   1.1      cgd # Makefile for kernel tags files, init_sysent, etc.
      6   1.1      cgd 
      7  1.11    lukem .include <bsd.sys.mk>		# for HOST_SH
      8  1.11    lukem 
      9   1.1      cgd all:
     10   1.5      cgd 	@echo "make tags, links, init_sysent.c, or vnode_if.c only"
     11   1.5      cgd 	@false
     12   1.1      cgd 
     13   1.2      cgd SYSCALLSRC = makesyscalls.sh syscalls.conf syscalls.master
     14   1.4  mycroft init_sysent.c syscalls.c ../sys/syscall.h ../sys/syscallargs.h: ${SYSCALLSRC}
     15   1.1      cgd 	-mv -f init_sysent.c init_sysent.c.bak
     16   1.1      cgd 	-mv -f syscalls.c syscalls.c.bak
     17   1.1      cgd 	-mv -f ../sys/syscall.h ../sys/syscall.h.bak
     18   1.3      cgd 	-mv -f ../sys/syscallargs.h ../sys/syscallargs.h.bak
     19  1.11    lukem 	${HOST_SH} makesyscalls.sh syscalls.conf syscalls.master
     20   1.5      cgd 
     21   1.5      cgd VNODEIFSRC = vnode_if.sh vnode_if.src
     22   1.5      cgd vnode_if.c ../sys/vnode_if.h: ${VNODEIFSRC}
     23   1.5      cgd 	-mv -f vnode_if.c vnode_if.c.bak
     24   1.5      cgd 	-mv -f ../sys/vnode_if.h ../sys/vnode_if.h.bak
     25  1.11    lukem 	${HOST_SH} vnode_if.sh vnode_if.src
     26   1.1      cgd 
     27   1.7    perry 
     28   1.1      cgd # Kernel tags:
     29   1.1      cgd # Tags files are built in the top-level directory for each architecture,
     30   1.1      cgd # with a makefile listing the architecture-dependent files, etc.  The list
     31   1.1      cgd # of common files is in ./Make.tags.inc.  Links to the correct tags file
     32   1.1      cgd # are placed in each source directory.  We need to have links to tags files
     33   1.1      cgd # from the generic directories that are relative to the machine type, even
     34   1.1      cgd # via remote mounts; therefore we use symlinks to $SYSTAGS, which points at
     35   1.8    perry # ${SYSDIR}/arch/${MACHINE}/tags.
     36   1.7    perry 
     37   1.8    perry # Note: only a couple of architectures are currently working right. Add more
     38   1.8    perry # to ARCH as you fix them. Use the i386 as a model.
     39   1.8    perry 
     40   1.8    perry ARCH=	i386 mac68k
     41   1.1      cgd 
     42   1.1      cgd SYSTAGS=/var/db/sys_tags
     43  1.10    jhawk SYSDIR=..
     44   1.1      cgd 
     45   1.8    perry .ifmake links
     46   1.8    perry # Directories in which to place tags links (other than machine-dependent):
     47   1.8    perry # The invocation below returns every directory that contains sources, the idea
     48   1.8    perry # being, in the face of a constantly varying source tree, that this will be 
     49   1.8    perry # easier to maintain than a fixed list.
     50  1.10    jhawk DGEN!=	(cd ${SYSDIR};							\
     51  1.10    jhawk 	    find -H . -name arch -prune -o -name "*.[chs]" -print |	\
     52  1.10    jhawk 	    sed -e 's@^\./@@' -e 's@/[^/]*\..*@@' | sort -t / -u )
     53   1.8    perry .endif
     54   1.1      cgd 
     55   1.1      cgd tags::
     56   1.1      cgd 	-for i in ${ARCH}; do \
     57   1.9    jhawk 	    (cd ../arch/$$i && ${MAKE} ${MFLAGS} tags); done
     58   1.1      cgd 
     59   1.1      cgd links::
     60   1.1      cgd 	rm -f ${SYSTAGS}
     61   1.8    perry 	ln -s ${SYSDIR}/arch/${MACHINE}/tags ${SYSTAGS}
     62   1.1      cgd 	-for i in ${DGEN}; do \
     63   1.8    perry 	    (cd ../$$i && { rm -f tags; ln -s ${SYSTAGS} tags; }); done
     64   1.1      cgd 	-for i in ${ARCH}; do \
     65   1.9    jhawk 	    (cd ../arch/$$i && ${MAKE} ${MFLAGS} SYSTAGS=${SYSTAGS} links); done
     66