meta.stage.mk revision 284254
1# $Id: meta.stage.mk,v 1.35 2015/05/20 06:40:33 sjg Exp $
2#
3#	@(#) Copyright (c) 2011, Simon J. Gerraty
4#
5#	This file is provided in the hope that it will
6#	be of use.  There is absolutely NO WARRANTY.
7#	Permission to copy, redistribute or otherwise
8#	use this file is hereby granted provided that 
9#	the above copyright notice and this notice are
10#	left intact. 
11#      
12#	Please send copies of changes and bug-fixes to:
13#	sjg@crufty.net
14#
15
16.if !target(__${.PARSEFILE}__)
17__${.PARSEFILE}__:
18
19.if ${.MAKE.DEPENDFILE_PREFERENCE:U${.MAKE.DEPENDFILE}:M*.${MACHINE}} != ""
20# this is generally safer anyway
21_dirdep = ${RELDIR}.${MACHINE}
22.else
23_dirdep = ${RELDIR}
24.endif
25
26# this allows us to trace dependencies back to their src dir
27.dirdep:
28	@echo '${_dirdep}' > $@
29
30.if defined(NO_POSIX_SHELL) || ${type printf:L:sh:Mbuiltin} == ""
31_stage_file_basename = `basename $$f`
32_stage_target_dirname = `dirname $$t`
33.else
34_stage_file_basename = $${f\#\#*/}
35_stage_target_dirname = $${t%/*}
36.endif
37
38_OBJROOT ?= ${OBJROOT:U${OBJTOP:H}}
39.if ${_OBJROOT:M*/} != ""
40_objroot ?= ${_OBJROOT:tA}/
41.else
42_objroot ?= ${_OBJROOT:tA}
43.endif
44
45# make sure this is global
46_STAGED_DIRS ?=
47.export _STAGED_DIRS
48# add each dir we stage to to _STAGED_DIRS
49# and make sure we have absolute paths so that bmake
50# will match against .MAKE.META.BAILIWICK
51STAGE_DIR_FILTER = tA:@d@$${_STAGED_DIRS::+=$$d}$$d@
52# convert _STAGED_DIRS into suitable filters
53GENDIRDEPS_FILTER += Nnot-empty-is-important \
54	${_STAGED_DIRS:O:u:M${OBJTOP}*:S,${OBJTOP}/,N,} \
55	${_STAGED_DIRS:O:u:M${_objroot}*:N${OBJTOP}*:S,${_objroot},,:C,^([^/]+)/(.*),N\2.\1,:S,${HOST_TARGET},.host,}
56
57LN_CP_SCRIPT = LnCp() { \
58  rm -f $$2 2> /dev/null; \
59  ln $$1 $$2 2> /dev/null || \
60  cp -p $$1 $$2; }
61
62# it is an error for more than one src dir to try and stage
63# the same file
64STAGE_DIRDEP_SCRIPT = ${LN_CP_SCRIPT}; StageDirdep() { \
65  t=$$1; \
66  if [ -s $$t.dirdep ]; then \
67	cmp -s .dirdep $$t.dirdep && return; \
68	echo "ERROR: $$t installed by `cat $$t.dirdep` not ${_dirdep}" >&2; \
69	exit 1; \
70  fi; \
71  LnCp .dirdep $$t.dirdep || exit 1; }
72
73# common logic for staging files
74# this all relies on RELDIR being set to a subdir of SRCTOP
75# we use ln(1) if we can, else cp(1)
76STAGE_FILE_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageFiles() { \
77  case "$$1" in "") return;; -m) mode=$$2; shift 2;; *) mode=;; esac; \
78  dest=$$1; shift; \
79  mkdir -p $$dest; \
80  [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \
81  for f in "$$@"; do \
82	case "$$f" in */*) t=$$dest/${_stage_file_basename};; *) t=$$dest/$$f;; esac; \
83	StageDirdep $$t; \
84	LnCp $$f $$t || exit 1; \
85	[ -z "$$mode" ] || chmod $$mode $$t; \
86  done; :; }
87
88STAGE_LINKS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageLinks() { \
89  case "$$1" in "") return;; --) shift;; -*) ldest= lnf=$$1; shift;; /*) ldest=$$1/;; esac; \
90  dest=$$1; shift; \
91  mkdir -p $$dest; \
92  [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \
93  while test $$\# -ge 2; do \
94	l=$$ldest$$1; shift; \
95	t=$$dest/$$1; \
96	case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \
97	shift; \
98	StageDirdep $$t; \
99	rm -f $$t 2>/dev/null; \
100	ln $$lnf $$l $$t || exit 1; \
101  done; :; }
102
103STAGE_AS_SCRIPT = ${STAGE_DIRDEP_SCRIPT}; StageAs() { \
104  case "$$1" in "") return;; -m) mode=$$2; shift 2;; *) mode=;; esac; \
105  dest=$$1; shift; \
106  mkdir -p $$dest; \
107  [ -s .dirdep ] || echo '${_dirdep}' > .dirdep; \
108  while test $$\# -ge 2; do \
109	s=$$1; shift; \
110	t=$$dest/$$1; \
111	case "$$1" in */*) mkdir -p ${_stage_target_dirname};; esac; \
112	shift; \
113	StageDirdep $$t; \
114	LnCp $$s $$t || exit 1; \
115	[ -z "$$mode" ] || chmod $$mode $$t; \
116  done; :; }
117
118# this is simple, a list of the "staged" files depends on this,
119_STAGE_BASENAME_USE:	.USE ${.TARGET:T}
120	@${STAGE_FILE_SCRIPT}; StageFiles ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T}
121
122_STAGE_AS_BASENAME_USE:        .USE ${.TARGET:T}
123	@${STAGE_AS_SCRIPT}; StageAs ${.TARGET:H:${STAGE_DIR_FILTER}} ${.TARGET:T} ${STAGE_AS_${.TARGET:T}:U${.TARGET:T}}
124
125.if !empty(STAGE_INCSDIR)
126STAGE_TARGETS += stage_incs
127STAGE_INCS ?= ${.ALLSRC:N.dirdep}
128
129stage_includes: stage_incs
130stage_incs:	.dirdep
131	@${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_INCSDIR:${STAGE_DIR_FILTER}} ${STAGE_INCS}
132	@touch $@
133.endif
134
135.if !empty(STAGE_LIBDIR)
136STAGE_TARGETS += stage_libs
137
138STAGE_LIBS ?= ${.ALLSRC:N.dirdep}
139
140stage_libs:	.dirdep
141	@${STAGE_FILE_SCRIPT}; StageFiles ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${STAGE_LIBS}
142.if !defined(NO_SHLIB_LINKS)
143.if !empty(SHLIB_LINKS)
144	@${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} \
145	${SHLIB_LINKS:@t@${STAGE_LIBS:T:M$t.*} $t@}
146.elif !empty(SHLIB_LINK) && !empty(SHLIB_NAME)
147	@${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_LIBDIR:${STAGE_DIR_FILTER}} ${SHLIB_NAME} ${SHLIB_LINK} ${SYMLINKS:T}
148.endif
149.endif
150	@touch $@
151.endif
152
153.if !empty(STAGE_DIR)
154STAGE_SETS += _default
155STAGE_DIR._default = ${STAGE_DIR}
156STAGE_LINKS_DIR._default = ${STAGE_LINKS_DIR:U${STAGE_OBJTOP}}
157STAGE_SYMLINKS_DIR._default = ${STAGE_SYMLINKS_DIR:U${STAGE_OBJTOP}}
158STAGE_FILES._default = ${STAGE_FILES}
159STAGE_LINKS._default = ${STAGE_LINKS}
160STAGE_SYMLINKS._default = ${STAGE_SYMLINKS}
161STAGE_FILES ?= ${.ALLSRC:N.dirdep:Nstage_*}
162STAGE_SYMLINKS ?= ${.ALLSRC:T:N.dirdep:Nstage_*}
163.endif
164
165.if !empty(STAGE_SETS)
166CLEANFILES += ${STAGE_SETS:@s@stage*$s@}
167
168# some makefiles need to populate multiple directories
169.for s in ${STAGE_SETS:O:u}
170STAGE_FILES.$s ?= ${.ALLSRC:N.dirdep}
171STAGE_SYMLINKS.$s ?= ${.ALLSRC:N.dirdep}
172STAGE_LINKS_DIR.$s ?= ${STAGE_OBJTOP}
173STAGE_SYMLINKS_DIR.$s ?= ${STAGE_OBJTOP}
174
175STAGE_TARGETS += stage_files
176.if $s != "_default"
177stage_files:	stage_files.$s
178stage_files.$s:	.dirdep
179.else
180stage_files:	.dirdep
181.endif
182	@${STAGE_FILE_SCRIPT}; StageFiles ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_FILES.$s}
183	@touch $@
184
185STAGE_TARGETS += stage_links
186.if $s != "_default"
187stage_links:	stage_links.$s
188stage_links.$s:	.dirdep
189.else
190stage_links:	.dirdep
191.endif
192	@${STAGE_LINKS_SCRIPT}; StageLinks ${STAGE_LINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_LINKS.$s}
193	@touch $@
194
195STAGE_TARGETS += stage_symlinks
196.if $s != "_default"
197stage_symlinks:	stage_symlinks.$s
198stage_symlinks.$s:	.dirdep
199.else
200stage_symlinks:	.dirdep
201.endif
202	@${STAGE_LINKS_SCRIPT}; StageLinks -s ${STAGE_SYMLINKS_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_SYMLINKS.$s}
203	@touch $@
204
205.endfor
206.endif
207
208.if !empty(STAGE_AS_SETS)
209CLEANFILES += ${STAGE_AS_SETS:@s@stage*$s@}
210
211STAGE_TARGETS += stage_as
212
213# sometimes things need to be renamed as they are staged
214# each ${file} will be staged as ${STAGE_AS_${file:T}}
215# one could achieve the same with SYMLINKS
216.for s in ${STAGE_AS_SETS:O:u}
217STAGE_AS.$s ?= ${.ALLSRC:N.dirdep}
218
219stage_as:	stage_as.$s
220stage_as.$s:	.dirdep
221	@${STAGE_AS_SCRIPT}; StageAs ${FLAGS.$@} ${STAGE_FILES_DIR.$s:U${STAGE_DIR.$s}:${STAGE_DIR_FILTER}} ${STAGE_AS.$s:@f@$f ${STAGE_AS_${f:tA}:U${STAGE_AS_${f:T}:U${f:T}}}@}
222	@touch $@
223
224.endfor
225.endif
226
227CLEANFILES += ${STAGE_TARGETS} stage_incs stage_includes
228
229# stage_*links usually needs to follow any others.
230.for t in ${STAGE_TARGETS:N*links:O:u}
231.ORDER: $t stage_links
232.ORDER: $t stage_symlinks
233.endfor
234
235# make sure this exists
236staging:
237
238# generally we want staging to wait until everything else is done
239STAGING_WAIT ?= .WAIT
240
241.if ${.MAKE.LEVEL} > 0
242all: ${STAGING_WAIT} staging
243.endif
244
245.if exists(${.PARSEDIR}/stage-install.sh) && !defined(STAGE_INSTALL)
246# this will run install(1) and then followup with .dirdep files.
247STAGE_INSTALL := sh ${.PARSEDIR:tA}/stage-install.sh INSTALL="${INSTALL}" OBJDIR=${.OBJDIR:tA}
248.endif
249
250# if ${INSTALL} gets run during 'all' assume it is for staging?
251.if ${.TARGETS:Nall} == "" && defined(STAGE_INSTALL)
252INSTALL := ${STAGE_INSTALL}
253.if target(beforeinstall)
254beforeinstall: .dirdep
255.endif
256.endif
257.NOPATH: ${STAGE_FILES}
258
259.if !empty(STAGE_TARGETS)
260MK_STALE_STAGED?= no
261.if ${MK_STALE_STAGED} == "yes"
262all: stale_staged
263# get a list of paths that we have just staged
264# get a list of paths that we have previously staged to those same dirs
265# anything in the 2nd list but not the first is stale - remove it.
266stale_staged: staging .NOMETA
267	@egrep '^[WL] .*${STAGE_OBJTOP}' /dev/null ${.MAKE.META.FILES:M*stage_*} | \
268	sed "/\.dirdep/d;s,.* '*\(${STAGE_OBJTOP}/[^ '][^ ']*\).*,\1," | \
269	sort > ${.TARGET}.staged1
270	@grep -l '${_dirdep}' /dev/null ${_STAGED_DIRS:M${STAGE_OBJTOP}*:O:u:@d@$d/*.dirdep@} | \
271	sed 's,\.dirdep,,' | sort > ${.TARGET}.staged2
272	@comm -13 ${.TARGET}.staged1 ${.TARGET}.staged2 > ${.TARGET}.stale
273	@test ! -s ${.TARGET}.stale || { \
274		echo "Removing stale staged files..."; \
275		sed 's,.*,& &.dirdep,' ${.TARGET}.stale | xargs rm -f; }
276
277.endif
278.endif
279.endif
280