aboutsummaryrefslogtreecommitdiff
path: root/build/dist/functions.make
blob: fcebe67559cd98ef52a098ed829484654d559b1f (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
# file      : build/dist/functions.make
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

dist_cmd  := $(bld_root)/install/install

dist_dir  := $(dist_cmd) -d -m 755
dist_data := $(dist_cmd) -p -m 644
dist_exec := $(dist_cmd) -p -m 755

$(out_root)/%: dist_dir  := $(dist_dir)
$(out_root)/%: dist_data := $(dist_data)
$(out_root)/%: dist_exec := $(dist_exec)

# Arguments:
#
# $1 - files
# $2 - optional destination directory. If not specified,
#      $(dist_prefix)/<path> is used where path is computed as
#      difference between src_base and src_root.
#
$(out_base)/%: dist-data = \
$(call dist-data-body,$1,$(if $2,$2,$(dist_prefix)$(subst \
$(src_root),,$(src_base))))

$(out_base)/%: dist-exec = \
$(call dist-exec-body,$1,$(if $2,$2,$(dist_prefix)$(subst \
$(src_root),,$(src_base))))

# Arguments:
#
# $1 - directory
# $2 - optional find predicates
# $3 - optional destination directory. If not specified,
#      $(dist_prefix)/<path> is used where path is computed as
#      difference between src_base and src_root.
#
$(out_base)/%: dist-dir = \
$(call dist-dir-body,$1,$2,$(if $3,$3,$(dist_prefix)$(subst \
$(src_root),,$(src_base))))


$(out_base)/%: dist-data-body = \
$(call message,,$(dist_dir) $2)\
$(foreach d,$(sort $(dir $(addprefix $2/,$1))),$(literal_newline)\
$(literal_tab)$(call message,,$(dist_dir) $d))\
$(foreach f,$1,$(literal_newline)\
$(literal_tab)$(call message,dist $2/$f,$(dist_data) $(src_base)/$f $2/$f))

$(out_base)/%: dist-exec-body = \
$(call message,,$(dist_dir) $2)\
$(foreach d,$(sort $(dir $(addprefix $2/,$1))),$(literal_newline)\
$(literal_tab)$(call message,,$(dist_dir) $d))\
$(foreach f,$1,$(literal_newline)\
$(literal_tab)$(call message,dist $2/$f,$(dist_exec) $(src_base)/$f $2/$f))

$(out_base)/%: dist-dir-body = \
$(call message,dist $3/$1,find -L $(src_base)/$1 $2 -type f -print \
| xargs -n 1 $(bld_root)/run-if-arg dirname \
| sort -u \
| sed -e 's%$(src_base)/$1\(.*\)%$3/$1\1%' \
| xargs -n 1 $(bld_root)/run-if-arg "$(dist_dir)")$(literal_newline)\
$(literal_tab)$(call message,,\
find -L $(src_base)/$1 $2 -type f ! -perm -100 -print \
| sed -e 's%$(src_base)/$1\(.*\)%$(src_base)/$1\1 $3/$1\1%' \
| xargs -n 2 $(bld_root)/run-if-arg "$(dist_data)")$(literal_newline)\
$(literal_tab)$(call message,,\
find -L $(src_base)/$1 $2 -type f -perm -100 -print \
| sed -e 's%$(src_base)/$1\(.*\)%$(src_base)/$1\1 $3/$1\1%' \
| xargs -n 2 $(bld_root)/run-if-arg "$(dist_exec)")