mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-07-23 05:31:48 +03:00
35 lines
981 B
Makefile
35 lines
981 B
Makefile
# parameters:
|
|
# $(1): lowercase package name
|
|
# $(2): uppercase package name
|
|
# $(3): build target arch
|
|
# $(4): build target os
|
|
#
|
|
define create-rules-cargo
|
|
$(call create-rules-common,$(1),$(2),$(3),$(4))
|
|
ifneq ($(findstring $(3)-$(4),$(ARCHS)),)
|
|
|
|
$$(OBJ)/.$(1)-$(3)-configure:
|
|
@echo ":: configuring $(1)-$(3)..." >&2
|
|
touch $$@
|
|
|
|
$$(OBJ)/.$(1)-$(3)-build:
|
|
@echo ":: building $(1)-$(3)..." >&2
|
|
cd $$($(2)_SRC) && env $$($(2)_$(3)_ENV) \
|
|
cargo build $(--quiet?) --release \
|
|
$$(filter -j%,$$(MAKEFLAGS)) \
|
|
--target-dir $$($(2)_$(3)_OBJ) \
|
|
$$($(3)-$(4)_CARGO_ARGS) \
|
|
$$($(2)_CARGO_ARGS) \
|
|
$$($(2)_$(3)_CARGO_ARGS)
|
|
touch $$@
|
|
endif
|
|
endef
|
|
|
|
rules-cargo = $(call create-rules-cargo,$(1),$(call toupper,$(1)),$(2),$(3))
|
|
|
|
i386-unix_CARGO_TARGET := i686-unknown-linux-gnu
|
|
x86_64-unix_CARGO_TARGET := x86_64-unknown-linux-gnu
|
|
|
|
i386-unix_CARGO_ARGS := --target $(i386-unix_CARGO_TARGET)
|
|
x86_64-unix_CARGO_ARGS := --target $(x86_64-unix_CARGO_TARGET)
|