summaryrefslogtreecommitdiff
path: root/distrib/sets/Makefile
blob: ea55cd9a29d68214dbb6f5527bbbf64253091248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#	$NetBSD: Makefile,v 1.40 2004/01/08 01:48:45 lukem Exp $

# The `all' target must appear before bsd.own.mk is pulled in.
all:
	@echo "Please understand what you are doing, first."
	@false

.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"

SETSENV=	DESTDIR=${DESTDIR:Q} \
		MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
		CKSUM=${TOOL_CKSUM:Q} MAKE=${MAKE:Q} MTREE=${TOOL_MTREE:Q} \
		MKTEMP=${TOOL_MKTEMP:Q} PAX=${TOOL_PAX:Q} HOST_SH=${HOST_SH:Q}

.if ${MKX11} != "no"
MAKEFLIST_FLAGS=	-b
.else
MAKEFLIST_FLAGS=
.endif

.if !defined(MAKETARSETS)
MAKETARSETS!= ${SETSENV} ${HOST_SH} ${.CURDIR}/makeflist -l ${MAKEFLIST_FLAGS}
.endif

print_have_gcc3:
	@echo ${HAVE_GCC3}

print_machine: .PHONY
	@echo ${MACHINE}

print_machine_arch: .PHONY
	@echo ${MACHINE_ARCH}

print_machine_cpu: .PHONY
	@echo ${MACHINE_CPU}

print_object_fmt: .PHONY
	@echo ${OBJECT_FMT}

print_toolchain_missing: .PHONY
	@echo "${TOOLCHAIN_MISSING}"

print_use_tools_toolchain: .PHONY
	@echo "${USE_TOOLS_TOOLCHAIN}"

print_x11_version: .PHONY
	${HOST_SH} -c '. ${.CURDIR}/sets.subr; echo $$x11_version'

# This target has debugging value only, really.
makeflist: .PHONY check_DESTDIR
	${SETSENV} ${HOST_SH} ${.CURDIR}/makeflist ${MAKEFLIST_FLAGS}

#
# SET BUILDING TARGETS
#

.if ${MKUNPRIVED} == "no"
METALOG.unpriv=
.else
METALOG.unpriv=	-M ${METALOG}
.endif

.PRECIOUS: checkflist
checkflist: check_DESTDIR
	${SETSENV} ${HOST_SH} ${.CURDIR}/checkflist \
	    ${MAKEFLIST_FLAGS} ${CHECKFLIST_FLAGS} ${METALOG.unpriv}

.PRECIOUS: checkflist-x11
checkflist-x11: check_DESTDIR
	${SETSENV} ${HOST_SH} ${.CURDIR}/checkflist -x ${CHECKFLIST_FLAGS}

.PRECIOUS: maketars
maketars: check_DESTDIR check_RELEASEDIR .WAIT maketarsetup .WAIT ${MAKETARSETS:@.TARS.@do-${.TARS.}@}
	@true

maketarsetup: .PHONY
.if defined(DESTDIR) && ${DESTDIR} != ""
	${MAKE} checkflist
.endif
	mkdir -p ${RELEASEDIR}/${MACHINE}/binary/sets
	for i in BSDSUM CKSUM MD5 SYSVSUM; do \
		rm -f ${RELEASEDIR}/${MACHINE}/binary/sets/$$i ${RELEASEDIR}/${MACHINE}/binary/sets/$$i.tmp; done
	
.for tar in ${MAKETARSETS}
do-${tar}: .PHONY
	${SETSENV} ${HOST_SH} ${.CURDIR}/maketars -d ${DESTDIR:S,^$,/,} \
	    ${METALOG.unpriv} -N ${NETBSDSRCDIR}/etc \
	    -t ${RELEASEDIR}/${MACHINE}/binary/sets ${tar}
.endfor

.PRECIOUS: makesrctars
makesrctars: check_RELEASEDIR
	mkdir -p ${RELEASEDIR}/source/sets
	${SETSENV} ${HOST_SH} ${.CURDIR}/makesrctars \
	    ${NETBSDSRCDIR} ${RELEASEDIR}/source/sets

.PRECIOUS: makesums
makesums: check_RELEASEDIR .WAIT ${MAKETARSETS:@.TARS.@do-sum-${.TARS.}@}
	for i in BSDSUM CKSUM MD5 SYSVSUM; do \
		mv ${RELEASEDIR}/${MACHINE}/binary/sets/$$i.tmp \
			${RELEASEDIR}/${MACHINE}/binary/sets/$$i; done

.for tar in ${MAKETARSETS}
do-sum-${tar}: .PHONY do-${tar}
	${SETSENV} ${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/binary/sets ${tar}.tgz
	for i in BSDSUM CKSUM MD5 SYSVSUM; do \
		${TOOL_CAT} ${RELEASEDIR}/${MACHINE}/binary/sets/$$i >> ${RELEASEDIR}/${MACHINE}/binary/sets/$$i.tmp; \
	done
.endfor
.ORDER: ${MAKETARSETS:@.TARS.@do-sum-${.TARS.}@}

.PRECIOUS: installsets
installsets: check_DESTDIR
.if !defined(INSTALLDIR)
	@echo "setenv INSTALLDIR before doing that!"
	@false
.endif
	${SETSENV} ${HOST_SH} ${.CURDIR}/maketars -d ${DESTDIR:S,^$,/,} \
	    ${METALOG.unpriv} -N ${NETBSDSRCDIR}/etc \
	    -i ${INSTALLDIR} ${INSTALLSETS}

#
# MAIN ENTRY POINTS
#

sets: maketars .WAIT makesums
	@true

sourcesets: makesrctars
	@true

.include <bsd.sys.mk>