mirror of
https://github.com/krzyzanowskim/CryptoSwift.git
synced 2026-05-07 20:12:26 +00:00
10 lines
226 B
Makefile
10 lines
226 B
Makefile
.PHONY: frameworks
|
|
|
|
CWD := $(abspath $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST))))))
|
|
|
|
frameworks:
|
|
$(CWD)/scripts/build-framework.sh
|
|
@echo "Framework built in $(CWD)/CryptoSwift.xcframework"
|
|
|
|
all: frameworks
|