Project

General

Profile

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

    
4
if self_not_included; then
5

    
6
# usage: target_filename/command() { echo_func; set_make_vars; use $target...; }
7
alias set_make_vars="$(cat <<'EOF'
8
local command="${FUNCNAME##*/}"; echo_vars command
9
local target_filename="${FUNCNAME%/*}"; echo_vars target_filename
10
local target="$top_dir/$target_filename"; echo_vars target
11
EOF
12
)"
13

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

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

    
20
# usage: set_make_vars; check_target_exists
21
alias check_target_exists='remaking || require_not_exists "$target" || return 0'
22
alias check_fake_target_exists='remaking || declare if_not_exists=1'
23
	# defer check until to_file
24

    
25
# usage: set_make_vars; to_target cmd...
26
alias to_target='stdout="$target" to_file ' # last space alias-expands next word
27

    
28
make() { echo_func; cmd_log_fd=1 self "$@"; }
29

    
30
if false; then ## usage:
31
inline_make <<'EOF'
32
target:
33
	$(self_dir)/cmd >$@
34
EOF
35
# target will be run automatically because it's first in the makefile
36
fi ##
37
inline_make()
38
{
39
	echo_func
40
	local_export self="$(readlink -f "${BASH_SOURCE[1]}")"; echo_vars self
41
	local_export self_dir="$(dirname "$self")"; echo_vars self_dir
42
	
43
	make --makefile=<((
44
		cat # script stdin from caller-provided stdin
45
		echo -n "
46
.SUFFIXES: # turn off built-in suffix rules
47
.SECONDARY: # don't automatically delete intermediate files
48
.DELETE_ON_ERROR: # delete target if recipe fails
49
"
50
	)|echo_stdin) "$@" <&20 # make's stdin from global stdin
51
}
52

    
53
fi
(4-4/5)