mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
16 lines
339 B
Makefile
16 lines
339 B
Makefile
TARGETS = x86_64-apple-ios aarch64-apple-ios aarch64-apple-ios-sim
|
|
BUILD_TYPES = debug release
|
|
|
|
all: $(BUILD_TYPES)
|
|
|
|
debug: $(TARGETS)
|
|
for target in $(TARGETS); do \
|
|
cargo build --target $$target; \
|
|
done
|
|
|
|
release:
|
|
for target in $(TARGETS); do \
|
|
cargo build --release --target $$target; \
|
|
done
|
|
|
|
.PHONY: all $(BUILD_TYPES) $(TARGETS) |