-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (21 loc) · 669 Bytes
/
Makefile
File metadata and controls
27 lines (21 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: setup ios android test clean clean-all help
setup:
@$(MAKE) -C mobile-app install
ios:
@$(MAKE) -C mobile-app build-ios
android:
@$(MAKE) -C mobile-app build-android
clean:
@$(MAKE) -C mobile-app clean
clean-all:
@$(MAKE) -C mobile-app clean-all
help:
@echo "Available targets:"
@echo " make setup - Install Node dependencies"
@echo " make ios - Build Nim backend + iOS app"
@echo " make android - Build Nim backend + Android app"
@echo " make clean - Clean all build artifacts"
@echo " make clean-all - Clean everything including Nim caches"
@echo ""
@echo "Sub-project targets:"
@echo " make -C mobile-app help"