Project

General

Profile

1
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/util.sh
3

    
4
if self_not_included; then
5

    
6
if isset rm; then : "${remake:=$rm}"; fi #mnemonic: files are rm'd (overwritten)
7

    
8
# usage: target_filename/command() { echo_func; set_make_vars; use $target...; }
9
alias set_make_vars="$(cat <<'EOF'
10
local command="${FUNCNAME##*/}"; echo_vars command
11
local target_filename="${FUNCNAME%/*}"; echo_vars target_filename
12
local target="$top_dir/$target_filename"; echo_vars target
13
local target_stem="${target_filename%.*}"; echo_vars target_stem
14
local _remake="$remake" remake=; echo_vars _remake
15
EOF
16
)" # `remake=`: don't progagate remake to prerequisites
17

    
18
# usage: remaking || check if exists
19
# cmd line usage: [remake=1] func
20
alias remaking='test "$_remake"'
21

    
22
# usage: set_make_vars; ...; self_make overridden_target... # progagates $remake
23
function self_make() { remake="$_remake" "$@"; }
24
alias self_make='"self_make" ' # last space alias-expands next word
25

    
26
# usage: set_make_vars; check_target_exists
27
alias check_target_exists='remaking || require_not_exists "$target" || return 0'
28
alias deferred_check_target_exists='remaking || declare if_not_exists=1'
29
	# defer check until to_file
30
alias check_fake_target_exists='deferred_check_target_exists'
31
alias wildcard1_target='local target="$(wildcard1 "$top_dir"/$target_filename)"'
32
alias check_wildcard_target_exists='wildcard1_target; check_target_exists'
33

    
34
# usage: set_make_vars; to_target cmd...
35
alias to_target='stdout="$target" to_file ' # last space alias-expands next word
36

    
37
make() # usage: make target...
38
{
39
	echo_func
40
	(
41
		# at verbosity < 4, hide messages about making included Makefiles
42
		# this can reduce # lines of output to 1/3 as much
43
		if test ! "$make_filter_active" && ! "log+" 3 can_log; then
44
			local_export make_filter_active=1
45
			local cmd="$(sys_cmd_path "$(self_name)")"; echo_vars cmd
46
			fd="$log_fd" clog++ filter_fd sed \
47
-e "\%^$cmd ([^-][^[:space:]]*)?Makefile%,/^make\[[[:digit:]]+\]: .*Makefile/d" \
48
-e                                       '/^make\[[[:digit:]]+\]: .*Makefile/d'
49
		fi
50
		time cmd_log_fd=1 self_sys $(if ! can_log; then echo '--silent ';fi)"$@"
51
	)
52
}
53

    
54
top_make() { echo_func; make --directory="$top_dir" "$@"; }
55

    
56
if false; then ## usage:
57
inline_make <<'EOF'
58
target:
59
	$(self_dir)/cmd >$@
60
EOF
61
# target will be run automatically because it's first in the makefile
62
fi ##
63
inline_make()
64
{
65
	echo_func
66
	local_export self="$(readlink -f "${BASH_SOURCE[1]}")"; echo_vars self
67
	local_export self_dir="$(dirname "$self")"; echo_vars self_dir
68
	
69
	make --makefile=<((
70
		cat # script stdin from caller-provided stdin
71
		echo -n "
72
.SUFFIXES: # turn off built-in suffix rules
73
.SECONDARY: # don't automatically delete intermediate files
74
.DELETE_ON_ERROR: # delete target if recipe fails
75
"
76
	)|echo_stdin) "$@" <&20 # make's stdin from global stdin
77
}
78

    
79
fi
(6-6/10)