Project

General

Profile

1
#!/bin/bash -e
2
if false; then #### make target template:
3
target()
4
{
5
	begin_target
6
	#...
7
}
8
fi ####
9

    
10
. "$(dirname "${BASH_SOURCE[0]}")"/util.sh
11

    
12
if self_not_included; then
13

    
14
if isset rm; then : "${remake:=$rm}"; fi #mnemonic: files are rm'd (overwritten)
15
unset rm # don't allow rm to override remake if an invoked script uses this file
16
export remake # propagate to invoked commands by default
17

    
18
alias echo_target='log-- echo_func' # display by default
19

    
20
# helper alias; use begin_target instead
21
# usage: target_filename/command() { echo_func; set_make_vars; use $target...; }
22
alias set_make_vars="$(cat <<'EOF'
23
local command="${FUNCNAME##*/}"; echo_vars command
24
local target_filename="${FUNCNAME%/*}"; echo_vars target_filename
25
local target="$top_dir/$target_filename"; echo_vars target
26
local target_stem="${target_filename%.*}"; echo_vars target_stem
27
local _remake="$remake" remake=; echo_vars _remake
28
EOF
29
)" # `remake=`: don't progagate remake to prerequisites
30

    
31
# usage: target() { begin_target; use $target...; }
32
alias begin_target='echo_target; echo_func; set_make_vars' # echo all targets
33

    
34
# usage: begin_target; ...; remaking || check if exists
35
# cmd line usage: [remake=1] func
36
# **WARNING**: you *MUST* use begin_target at the beginning of any function
37
# that uses this, so that $_remake is properly set to $remake and not left at
38
# its previous value
39
alias remaking='test "$_remake"'
40

    
41
# usage: begin_target; ...; with_rm target ... # progagates $rm/$remake
42
# **WARNING**: only works inside a runscript target that starts w/ begin_target
43
function with_rm() { remake="$_remake" "$@"; }
44
alias with_rm='"with_rm" ' # last space alias-expands next word
45

    
46
# usage: begin_target; check_target_exists
47
alias check_target_exists='remaking || require_not_exists "$target" || return 0'
48
alias deferred_check_target_exists='remaking || declare if_not_exists=1'
49
	# defer check until to_file
50
alias check_fake_target_exists='deferred_check_target_exists'
51
alias wildcard1_target='local target="$(wildcard1 "$top_dir"/$target_filename)"'
52
alias check_wildcard_target_exists='wildcard1_target; check_target_exists'
53

    
54
# usage: begin_target; to_target cmd...
55
alias to_target='stdout="$target" to_file ' # last space alias-expands next word
56

    
57
make() # usage: make target...
58
{
59
	echo_func
60
	(
61
		# at verbosity < 4, hide messages about making included Makefiles
62
		# this can reduce # lines of output to 1/3 as much
63
		if test ! "$make_filter_active" && ! log+ 3 can_log; then
64
			local_export make_filter_active=1
65
			local cmd="$(log++ sys_cmd_path "$(self_name)")"; echo_vars cmd
66
			fd="$log_fd" log++ filter_fd sed \
67
-e "\%^$cmd ([^-][^[:space:]]*)?Makefile%,/^make\[[[:digit:]]+\]: .*Makefile/d" \
68
-e                                       '/^make\[[[:digit:]]+\]: .*Makefile/d'
69
		fi
70
		time cmd_log_fd=1 self_sys $(if ! can_log; then echo '--silent ';fi)"$@"
71
	)
72
}
73

    
74
top_make() { echo_func; make --directory="$top_dir" "$@"; }
75

    
76
if false; then ## usage:
77
inline_make <<'EOF'
78
target:
79
	$(self_dir)/cmd >$@
80
EOF
81
# target will be run automatically because it's first in the makefile
82
fi ##
83
inline_make()
84
{
85
	echo_func
86
	local_export self="$(readlink -f "${BASH_SOURCE[1]}")"; echo_vars self
87
	local_export self_dir="$(dirname "$self")"; echo_vars self_dir
88
	
89
	make --makefile=<((
90
		cat # script stdin from caller-provided stdin
91
		echo -n "
92
.SUFFIXES: # turn off built-in suffix rules
93
.SECONDARY: # don't automatically delete intermediate files
94
.DELETE_ON_ERROR: # delete target if recipe fails
95
"
96
	)|echo_stdin) "$@" <&20 # make's stdin from global stdin
97
}
98

    
99
fi
(7-7/11)