2013-12-10 14:54:34 +00:00
|
|
|
# Add a rule for creating $(1) as a directory. This template may be
|
|
|
|
# called multiple times for the same directory.
|
2014-02-04 10:02:49 +00:00
|
|
|
define create-dir
|
2014-02-18 12:35:35 +00:00
|
|
|
_i := $$(call add-trailing-slash, $(DESTDIR)$$(strip $(1)))
|
2014-02-07 14:06:21 +00:00
|
|
|
ifndef $$(_i)_SEEN
|
|
|
|
$$(_i)_SEEN = 1
|
|
|
|
$$(_i):
|
|
|
|
$$(trace-mkdir) install -d "$$@"
|
2013-12-10 14:54:34 +00:00
|
|
|
endif
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
# Add a rule for installing file $(1) as file $(2) with mode $(3).
|
|
|
|
# The directory containing $(2) will be created automatically.
|
2014-02-04 10:02:49 +00:00
|
|
|
define install-file-as
|
2013-12-10 14:54:34 +00:00
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
_i := $(DESTDIR)$$(strip $(2))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
install: $$(_i)
|
2013-12-10 14:54:34 +00:00
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
$$(_i): $(1) | $$(dir $$(_i))
|
|
|
|
$$(trace-install) install -m $(3) $(1) "$$@"
|
|
|
|
|
|
|
|
$$(eval $$(call create-dir, $$(dir $(2))))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
# Add a rule for installing file $(1) in directory $(2) with mode
|
|
|
|
# $(3). The directory will be created automatically.
|
2014-02-04 10:02:49 +00:00
|
|
|
define install-file-in
|
2013-12-10 14:54:34 +00:00
|
|
|
$$(eval $$(call install-file-as,$(1),$(2)/$$(notdir $(1)),$(3)))
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2014-02-04 10:02:49 +00:00
|
|
|
define install-program-in
|
2013-12-10 14:54:34 +00:00
|
|
|
$$(eval $$(call install-file-in,$(1),$(2),0755))
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2014-02-04 10:02:49 +00:00
|
|
|
define install-data-in
|
2013-12-10 14:54:34 +00:00
|
|
|
$$(eval $$(call install-file-in,$(1),$(2),0644))
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
# Install a symlink from $(2) to $(1). Note that $(1) need not exist.
|
2014-02-04 10:02:49 +00:00
|
|
|
define install-symlink
|
2013-12-10 14:54:34 +00:00
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
_i := $(DESTDIR)$$(strip $(2))
|
|
|
|
|
|
|
|
install: $$(_i)
|
2013-12-10 14:54:34 +00:00
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
$$(_i): | $$(dir $$(_i))
|
|
|
|
$$(trace-install) ln -sfn $(1) "$$@"
|
2013-12-10 14:54:34 +00:00
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
$$(eval $$(call create-dir, $$(dir $(2))))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
endef
|
2014-02-01 10:31:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
print-top-help += \
|
|
|
|
echo " install: Install into \$$(prefix) (currently set to '$(prefix)')";
|