Home | History | Annotate | Line # | Download | only in mtree
Makefile revision 1.35.2.1
      1  1.35.2.1  pgoyette #	$NetBSD: Makefile,v 1.35.2.1 2017/01/07 08:53:48 pgoyette Exp $
      2       1.6       mrg 
      3       1.6       mrg .include <bsd.own.mk>
      4       1.6       mrg 
      5       1.6       mrg .if ${MKX11} != "no"
      6      1.33  christos EXTRA_DIST_FILES=	NetBSD.dist.Xorg
      7       1.6       mrg .endif
      8       1.6       mrg 
      9      1.19       mrg # XXX these are only used by compat currently, but they could be used
     10      1.19       mrg # by something else; this may need to be fixed properly in the future.
     11      1.28    martin .if defined(MKCOMPAT) && ${MKCOMPAT} != "no"
     12      1.25      matt .include "${NETBSDSRCDIR}/compat/archdirs.mk"
     13      1.13       mrg .if exists(NetBSD.dist.${MACHINE_ARCH})
     14      1.33  christos EXTRA_DIST_FILES+=	NetBSD.dist.${MACHINE_ARCH}
     15      1.23      matt .elif !empty(MACHINE_ARCH:Mearm*)
     16      1.33  christos EXTRA_DIST_FILES+=	NetBSD.dist.earm
     17      1.13       mrg .endif
     18      1.25      matt EXTRA_DIST_FILES+=	NetBSD.dist.compat	# autogenerated
     19      1.29       mrg .if defined(MKCOMPATX11) && ${MKCOMPATX11} != "no" && ${MKX11} != "no"
     20      1.26      matt EXTRA_DIST_FILES+=	NetBSD.dist.xcompat	# autogenerated
     21      1.26      matt .endif
     22      1.19       mrg .endif
     23      1.13       mrg 
     24      1.18     njoly .if ${MKATF} != "no"
     25      1.33  christos EXTRA_DIST_FILES+=	NetBSD.dist.tests
     26      1.28    martin .if defined(MKCOMPATTESTS) && ${MKCOMPATTESTS} != "no"
     27      1.25      matt EXTRA_DIST_FILES+=	NetBSD.dist.tests.compat
     28      1.25      matt .endif
     29      1.18     njoly .endif
     30      1.18     njoly 
     31      1.30       riz .if ${MKDTRACE} != "no"
     32      1.33  christos EXTRA_DIST_FILES+=	NetBSD.dist.dtrace
     33      1.30       riz .endif
     34      1.30       riz 
     35      1.11  uebayasi .if ${MKEXTSRC} != "no"
     36      1.33  christos EXTRA_DIST_FILES+=	NetBSD.dist.extsrc
     37      1.11  uebayasi .endif
     38      1.11  uebayasi 
     39      1.22       apb NetBSD.dist:	NetBSD.dist.tmp
     40      1.22       apb 	cmp -s NetBSD.dist.tmp NetBSD.dist || { \
     41      1.14  uebayasi 		echo "Updating NetBSD.dist"; \
     42      1.22       apb 		mv NetBSD.dist.tmp NetBSD.dist; \
     43      1.14  uebayasi 	}
     44      1.35  christos # Rebuild every time
     45      1.35  christos .PHONY: NetBSD.dist.tmp
     46      1.33  christos NetBSD.dist.tmp: NetBSD.dist.base ${EXTRA_DIST_FILES}
     47      1.33  christos 	${TOOL_CAT} ${.ALLSRC} > ${.TARGET}
     48       1.1       mrg 
     49      1.33  christos NetBSD.dist.compat: NetBSD.dist.compat.in mkcompat.awk
     50      1.25      matt 	${MKCREATE}
     51      1.33  christos 	${TOOL_AWK} -f ${.ALLSRC:M*.awk} -v COMPATDIRS=${ARCHDIR_SUBDIR:T:Q} \
     52      1.33  christos 	    ${.ALLSRC:M*.in} > ${.TARGET}
     53      1.25      matt 
     54      1.33  christos NetBSD.dist.xcompat: NetBSD.dist.xcompat.in mkcompat.awk
     55      1.26      matt 	${MKCREATE}
     56      1.33  christos 	${TOOL_AWK} -f ${.ALLSRC:M*.awk} -v COMPATDIRS=${ARCHDIR_SUBDIR:T:Q} \
     57      1.33  christos 	    ${.ALLSRC:M*.in} > ${.TARGET}
     58      1.26      matt 
     59      1.33  christos NetBSD.dist.tests.compat: NetBSD.dist.tests mkcompattree.awk 
     60      1.25      matt 	${MKCREATE}
     61  1.35.2.1  pgoyette 	${TOOL_AWK} -f ${.ALLSRC:M*.awk} \
     62      1.25      matt 	    -v COMPATDIRS=${ARCHDIR_SUBDIR:T:Q} -v S="usr/tests" \
     63      1.33  christos 		${.ALLSRC:M*.tests} > ${.TARGET}
     64      1.25      matt 
     65       1.5     lukem CONFIGFILES=	NetBSD.dist special
     66       1.1       mrg FILESDIR=	/etc/mtree
     67       1.1       mrg 
     68       1.6       mrg # distrib-dirs --
     69       1.6       mrg #	Populate $DESTDIR with directories needed by NetBSD
     70       1.6       mrg #
     71       1.6       mrg .if ${MKUNPRIVED} == "no"
     72       1.6       mrg TOOL_MTREE.unpriv=
     73       1.6       mrg .else
     74       1.6       mrg TOOL_MTREE.unpriv=	-W
     75       1.6       mrg .endif
     76       1.6       mrg 
     77      1.17    dyoung # postinstall(8) invokes this target to produce the right
     78      1.17    dyoung # /etc/mtree/NetBSD.dist content without duplicating logic from
     79      1.17    dyoung # the Makefile.
     80      1.17    dyoung #
     81      1.33  christos emit_dist_file:	NetBSD.dist.base ${EXTRA_DIST_FILES}
     82      1.33  christos 	@cat ${.ALLSRC}
     83      1.16    dyoung 
     84      1.10  drochner distrib-dirs: .PHONY check_DESTDIR NetBSD.dist
     85       1.6       mrg .if !defined(DISTRIBUTION_DONE)						# {
     86       1.6       mrg # Create DESTDIR using HOST_INSTALL_DIR, not INSTALL_DIR, because
     87       1.6       mrg # INSTALL_DIR would want to write to the metalog, and it can't do that
     88       1.6       mrg # if the metalog is inside DESTDIR but DESTDIR doesn't yet exist.
     89       1.6       mrg 	${HOST_INSTALL_DIR} -m 755 ${DESTDIR}
     90      1.20       jym # Invoke mtree to create the directories listed in NetBSD.dist;
     91       1.6       mrg # then invoke mtree again to register those directories in the metalog.
     92       1.6       mrg 	${TOOL_MTREE} -def ${.OBJDIR}/NetBSD.dist -N ${.CURDIR}/.. \
     93       1.6       mrg 	    -p ${DESTDIR}/ -U ${TOOL_MTREE.unpriv}
     94       1.6       mrg .if ${MKUNPRIVED} != "no"						# {
     95       1.6       mrg 	${TOOL_MTREE} -def ${.OBJDIR}/NetBSD.dist -N ${.CURDIR}/.. \
     96       1.6       mrg 	    -p ${DESTDIR}/ -C -k all | \
     97       1.6       mrg 	    ${TOOL_AWK} '/ optional/ {next} // {print}' | ${METALOG.add}
     98       1.6       mrg .endif	# MKUNPRIVED							# }
     99       1.6       mrg .endif	# DISTRIBUTION_DONE						# }
    100       1.6       mrg 
    101      1.22       apb CLEANFILES+=	NetBSD.dist NetBSD.dist.tmp
    102      1.25      matt CLEANFILES+=	NetBSD.dist.compat
    103      1.25      matt CLEANFILES+=	NetBSD.dist.tests.compat
    104      1.10  drochner 
    105       1.1       mrg .include <bsd.prog.mk>
    106