Yucom/make/rules-cargo.mk

23 lines
626 B
Makefile
Raw Normal View History

2020-05-28 12:24:12 +02:00
# parameters:
# $(1): lowercase package name
# $(2): uppercase package name
# $(3): 32/64, build type
#
define create-rules-cargo
$(call create-rules-common,$(1),$(2),$(3))
ifeq ($(CONTAINER),1)
$$(OBJ)/.$(1)-configure$(3):
2020-05-28 12:24:12 +02:00
@echo ":: configuring $(3)bit $(1)..." >&2
touch $$@
$$(OBJ)/.$(1)-build$(3):
2020-05-28 12:24:12 +02:00
@echo ":: building $(3)bit $(1)..." >&2
cd $$($(2)_SRC) && env $$($(2)_ENV$(3)) \
cargo build $$(filter -j%,$$(MAKEFLAGS)) --target "$$(ARCH$(3))-unknown-linux-gnu" --target-dir $$($(2)_OBJ$(3)) $$(CARGO_BUILD_ARG)
2020-05-28 12:24:12 +02:00
touch $$@
endif
endef
rules-cargo = $(call create-rules-cargo,$(1),$(call toupper,$(1)),$(2))