Home | History | Annotate | Line # | Download | only in tools
Makefile.nbincludes revision 1.3
      1 #	$NetBSD: Makefile.nbincludes,v 1.3 2012/08/05 06:20:14 christos Exp $
      2 
      3 # NOxxx definitions are copied from Makefile.host, and are
      4 # required before .include <bsd.own.mk>.   The include of bsd.own.mk
      5 # itself is required to get definitions of TOOL_* variables used in
      6 # "!=" variable assignments (which are performed early).
      7 #
      8 NOINFO=		# defined
      9 NOLINT=		# defined
     10 NOMAN=		# defined
     11 
     12 .include <bsd.own.mk>
     13 
     14 _ARCHDIR=	${.CURDIR}/../../sys/arch
     15 _INCDIR=	${.CURDIR}/../../include
     16 _SYSDIR=	${.CURDIR}/../../sys/sys
     17 _UFSDIR=	${.CURDIR}/../../sys/ufs
     18 _SUBDIR!=	cd ${_ARCHDIR} && ${MAKE} -V SUBDIR
     19 
     20 .if make(depend) || make(all) || make(dependall) || make(install)
     21 # There's no need to run these commands for "make cleandir" or "make obj",
     22 # and TOOL_SED will not yet have been built.
     23 _UFS_INCS!=	cd ${_UFSDIR} && find ffs ufs -name '*.h'
     24 _ARCH_INCS!=	${TOOL_SED} -e 's/^\#.*//' ${.CURDIR}/../headerlist
     25 .endif
     26 
     27 _ARCH_INCS+=	ews4800mips/include/pdinfo.h ews4800mips/include/vtoc.h
     28 
     29 _INCS=		disktab.h
     30 _SYSINCS=	bootblock.h \
     31 		disklabel.h disklabel_acorn.h disklabel_gpt.h disklabel_rdb.h \
     32 		dkbad.h \
     33 		exec_elf.h
     34 
     35 HOST_CPPFLAGS+=	-I${TOOLDIR}/include -I${TOOLDIR}/include/nbinclude
     36 
     37 beforedepend: 
     38 	${HOST_INSTALL_DIR} ${TOOLDIR}/include/nbinclude
     39 	${HOST_INSTALL_DIR} ${TOOLDIR}/include/nbinclude/sys
     40 	${HOST_INSTALL_DIR} ${TOOLDIR}/include/nbinclude/ufs
     41 	cd ${_ARCHDIR} && \
     42 	    ${TOOL_PAX} -s /include\\/// -rw ${_ARCH_INCS} \
     43 	    ${TOOLDIR}/include/nbinclude
     44 	cd ${_INCDIR} && \
     45 	    ${TOOL_PAX} -rw ${_INCS} ${TOOLDIR}/include/nbinclude
     46 	cd ${_SYSDIR} && \
     47 	    ${TOOL_PAX} -rw ${_SYSINCS} ${TOOLDIR}/include/nbinclude/sys
     48 	cd ${_UFSDIR} && \
     49 	    ${TOOL_PAX} -rw ${_UFS_INCS} ${TOOLDIR}/include/nbinclude/ufs
     50 	cd ${TOOLDIR}/include/nbinclude && rm -f machine && \
     51 	    ${HOST_INSTALL_SYMLINK} ${MACHINE} machine
     52