2022-03-01 12:56:18 -08:00
|
|
|
SHELL := bash
|
|
|
|
.ONESHELL:
|
|
|
|
.SHELLFLAGS := -eu -o pipefail -c
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
MAKEFLAGS += --warn-undefined-variables
|
|
|
|
MAKEFLAGS += --no-builtin-rules
|
|
|
|
|
|
|
|
PLATFORMS = ios-device macos ios-simulator
|
|
|
|
IOS_DEVICE_ARCHS = aarch64-apple-ios
|
2022-03-25 14:54:40 -07:00
|
|
|
IOS_SIM_ARCHS_STABLE = x86_64-apple-ios aarch64-apple-ios-sim
|
2022-03-01 12:56:18 -08:00
|
|
|
MACOS_ARCHS = x86_64-apple-darwin aarch64-apple-darwin
|
2022-03-25 14:54:40 -07:00
|
|
|
IOS_SIM_ARCHS = $(IOS_SIM_ARCHS_STABLE)
|
2022-03-01 12:56:18 -08:00
|
|
|
|
|
|
|
RUST_SRCS = $(shell find rust -name "*.rs") Cargo.toml
|
|
|
|
STATIC_LIBS = $(shell find target -name "libzcashlc.a")
|
|
|
|
|
|
|
|
install:
|
|
|
|
rustup toolchain add stable
|
2022-03-25 14:54:40 -07:00
|
|
|
rustup +stable target add aarch64-apple-ios x86_64-apple-ios x86_64-apple-darwin aarch64-apple-darwin aarch64-apple-ios-sim
|
|
|
|
|
2022-03-01 12:56:18 -08:00
|
|
|
.PHONY: install
|
|
|
|
|
|
|
|
release: clean xcframework
|
|
|
|
.PHONY: release
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf products
|
|
|
|
rm -rf rust/target
|
|
|
|
.PHONY: clean
|
|
|
|
|
|
|
|
xcframework: products/libzcashlc.xcframework
|
|
|
|
mkdir -p releases/XCFramework/
|
|
|
|
rsync -avr --exclude='*.DS_Store' products/libzcashlc.xcframework releases/XCFramework/
|
|
|
|
.PHONY: xcframework
|
|
|
|
|
|
|
|
products/libzcashlc.xcframework: $(PLATFORMS)
|
|
|
|
rm -rf $@
|
|
|
|
mkdir -p $@
|
|
|
|
cp -R products/ios-device/frameworks $@/ios-arm64
|
|
|
|
cp -R products/ios-simulator/frameworks $@/ios-arm64_x86_64-simulator
|
|
|
|
cp -R products/macos/frameworks $@/macos-arm64_x86_64
|
|
|
|
cp support/Info.plist $@
|
|
|
|
|
|
|
|
frameworks: $(PLATFORMS)
|
|
|
|
.PHONY: frameworks
|
|
|
|
|
|
|
|
$(PLATFORMS): %: products/%/frameworks/libzcashlc.framework
|
|
|
|
.PHONY: $(PLATFORMS)
|
|
|
|
|
|
|
|
products/%/frameworks/libzcashlc.framework: products/%/universal/libzcashlc.a
|
|
|
|
rm -rf $@
|
|
|
|
mkdir -p $@
|
|
|
|
cp products/$*/universal/libzcashlc.a $@/libzcashlc
|
|
|
|
cp -R rust/target/Headers $@
|
|
|
|
mkdir $@/Modules
|
|
|
|
cp support/module.modulemap $@/Modules
|
2024-04-16 10:51:30 -07:00
|
|
|
# Workaround for a bug in the XCode 15.3 build system.
|
|
|
|
# https://github.com/Electric-Coin-Company/zashi-ios/issues/1166
|
|
|
|
cp support/platform-Info.plist $@/Info.plist
|
2022-03-01 12:56:18 -08:00
|
|
|
|
|
|
|
products/macos/universal/libzcashlc.a: $(MACOS_ARCHS)
|
|
|
|
mkdir -p $(@D)
|
|
|
|
lipo -create $(shell find products/macos/static-libraries -name "libzcashlc.a") -output $@
|
|
|
|
|
|
|
|
products/ios-simulator/universal/libzcashlc.a: $(IOS_SIM_ARCHS)
|
|
|
|
mkdir -p $(@D)
|
|
|
|
lipo -create $(shell find products/ios-simulator/static-libraries -name "libzcashlc.a") -output $@
|
|
|
|
|
|
|
|
products/ios-device/universal/libzcashlc.a: $(IOS_DEVICE_ARCHS)
|
|
|
|
mkdir -p $(@D)
|
|
|
|
lipo -create $(shell find products/ios-device/static-libraries -name "libzcashlc.a") -output $@
|
|
|
|
|
|
|
|
$(MACOS_ARCHS): %: stable-%
|
|
|
|
mkdir -p products/macos/static-libraries/$*
|
|
|
|
cp rust/target/$*/release/libzcashlc.a products/macos/static-libraries/$*
|
|
|
|
.PHONY: $(MACOS_ARCHS)
|
|
|
|
|
|
|
|
$(IOS_DEVICE_ARCHS): %: stable-%
|
|
|
|
mkdir -p products/ios-device/static-libraries/$*
|
|
|
|
cp rust/target/$*/release/libzcashlc.a products/ios-device/static-libraries/$*
|
|
|
|
.PHONY: $(IOS_DEVICE_ARCHS)
|
|
|
|
|
|
|
|
$(IOS_SIM_ARCHS_STABLE): %: stable-%
|
|
|
|
mkdir -p products/ios-simulator/static-libraries/$*
|
|
|
|
cp rust/target/$*/release/libzcashlc.a products/ios-simulator/static-libraries/$*
|
|
|
|
.PHONY: $(IOS_SIM_ARCHS_STABLE)
|
|
|
|
|
|
|
|
stable-%: # target/%/release/libzcashlc.a:
|
|
|
|
sh -c "RUSTUP_TOOLCHAIN=stable cargo build --manifest-path rust/Cargo.toml --target $* --release"
|