a18ffa9b8b
CW-Bug-Id: #19516
31 lines
802 B
Makefile
31 lines
802 B
Makefile
# 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):
|
|
@echo ":: configuring $(3)bit $(1)..." >&2
|
|
touch $$@
|
|
|
|
$$(OBJ)/.$(1)-build$(3):
|
|
@echo ":: building $(3)bit $(1)..." >&2
|
|
cd $$($(2)_SRC) && env $$($(2)_ENV$(3)) \
|
|
cargo build \
|
|
$$(filter -j%,$$(MAKEFLAGS)) \
|
|
--target "$$(CARGO_TARGET_$(3))" \
|
|
--target-dir $$($(2)_OBJ$(3)) \
|
|
$$(CARGO_BUILD_ARG) \
|
|
$$($(2)_CARGO_ARGS) \
|
|
$$($(2)_CARGO_ARGS$(3))
|
|
touch $$@
|
|
endif
|
|
endef
|
|
|
|
rules-cargo = $(call create-rules-cargo,$(1),$(call toupper,$(1)),$(2))
|
|
|
|
CARGO_TARGET_32 := i686-unknown-linux-gnu
|
|
CARGO_TARGET_64 := x86_64-unknown-linux-gnu
|