2019-02-01 10:44:51 +00:00
|
|
|
.PHONY: clean setup react-native test release _ensure-in-nix-shell _list
|
2017-12-13 21:45:49 +00:00
|
|
|
|
|
|
|
help: ##@other Show this help
|
|
|
|
@perl -e '$(HELP_FUN)' $(MAKEFILE_LIST)
|
|
|
|
|
|
|
|
# This is a code for automatic help generator.
|
|
|
|
# It supports ANSI colors and categories.
|
|
|
|
# To add new item into help output, simply add comments
|
|
|
|
# starting with '##'. To add category, use @category.
|
|
|
|
GREEN := $(shell tput -Txterm setaf 2)
|
2019-02-01 10:44:51 +00:00
|
|
|
RED := $(shell tput -Txterm setaf 1)
|
2017-12-13 21:45:49 +00:00
|
|
|
WHITE := $(shell tput -Txterm setaf 7)
|
|
|
|
YELLOW := $(shell tput -Txterm setaf 3)
|
|
|
|
RESET := $(shell tput -Txterm sgr0)
|
2019-02-01 10:44:51 +00:00
|
|
|
BOLD := $(shell tput bold)
|
2017-12-13 21:45:49 +00:00
|
|
|
HELP_FUN = \
|
|
|
|
%help; \
|
|
|
|
while(<>) { push @{$$help{$$2 // 'options'}}, [$$1, $$3] if /^([a-zA-Z\-]+)\s*:.*\#\#(?:@([a-zA-Z\-]+))?\s(.*)$$/ }; \
|
|
|
|
print "Usage: make [target]\n\n"; \
|
|
|
|
for (sort keys %help) { \
|
|
|
|
print "${WHITE}$$_:${RESET}\n"; \
|
|
|
|
for (@{$$help{$$_}}) { \
|
|
|
|
$$sep = " " x (32 - length $$_->[0]); \
|
|
|
|
print " ${YELLOW}$$_->[0]${RESET}$$sep${GREEN}$$_->[1]${RESET}\n"; \
|
|
|
|
}; \
|
|
|
|
print "\n"; \
|
|
|
|
}
|
|
|
|
|
2019-03-25 16:35:01 +00:00
|
|
|
export NIX_CONF_DIR = $(PWD)/nix
|
2019-01-10 18:32:30 +00:00
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
# Main targets
|
|
|
|
|
2018-08-30 12:56:45 +00:00
|
|
|
clean: ##@prepare Remove all output folders
|
2019-02-01 10:44:51 +00:00
|
|
|
git clean -dxf -f
|
2018-08-30 12:56:45 +00:00
|
|
|
|
2019-03-25 16:35:01 +00:00
|
|
|
clean-nix: ##@prepare Remove complete nix setup
|
|
|
|
sudo rm -rf /nix ~/.cache/nix
|
|
|
|
|
2018-03-09 00:13:28 +00:00
|
|
|
setup: ##@prepare Install all the requirements for status-react
|
2018-11-29 16:28:57 +00:00
|
|
|
@./scripts/setup
|
2018-03-09 00:13:28 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
_ensure-in-nix-shell:
|
|
|
|
ifndef IN_NIX_SHELL
|
|
|
|
$(error '$(RED)Please run '$(BOLD)$(MAKE) shell$(RESET)$(RED)' first$(RESET)')
|
|
|
|
endif
|
|
|
|
|
|
|
|
shell: ##@prepare Enter into a pre-configured shell
|
|
|
|
ifndef IN_NIX_SHELL
|
|
|
|
@if command -v "nix" >/dev/null 2>&1 || [ -f ~/.nix-profile/etc/profile.d/nix.sh ]; then \
|
|
|
|
echo "Configuring Nix shell..."; \
|
|
|
|
if ! command -v "nix" >/dev/null 2>&1; then \
|
|
|
|
. ~/.nix-profile/etc/profile.d/nix.sh; \
|
|
|
|
nix-shell; \
|
|
|
|
else \
|
2019-03-25 16:35:01 +00:00
|
|
|
nix-shell; \
|
2019-02-01 10:44:51 +00:00
|
|
|
fi \
|
|
|
|
else \
|
|
|
|
echo "Please run 'make setup' first"; \
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
@echo "Nix shell is already active"
|
|
|
|
endif
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#----------------
|
|
|
|
# Release builds
|
|
|
|
#----------------
|
|
|
|
release: release-android release-ios ##@build build release for Android and iOS
|
|
|
|
|
2018-02-06 18:10:35 +00:00
|
|
|
release-android: prod-build-android ##@build build release for Android
|
2019-02-01 10:44:51 +00:00
|
|
|
ifdef IN_NIX_SHELL
|
2017-12-13 21:45:49 +00:00
|
|
|
react-native run-android --variant=release
|
2019-02-01 10:44:51 +00:00
|
|
|
endif
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-02-06 18:10:35 +00:00
|
|
|
release-ios: prod-build-ios ##@build build release for iOS release
|
2019-02-01 10:44:51 +00:00
|
|
|
ifdef IN_NIX_SHELL
|
2018-11-15 14:32:18 +00:00
|
|
|
@echo "Build in XCode, see https://status.im/build_status/ for instructions"
|
2019-02-01 10:44:51 +00:00
|
|
|
# Open XCode inside the Nix context
|
|
|
|
open ios/StatusIm.xcworkspace
|
|
|
|
endif
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-09-13 09:44:33 +00:00
|
|
|
release-desktop: prod-build-desktop ##@build build release for desktop release
|
2019-02-01 10:44:51 +00:00
|
|
|
ifdef IN_NIX_SHELL
|
2018-09-13 09:44:33 +00:00
|
|
|
scripts/build-desktop.sh
|
2019-02-01 10:44:51 +00:00
|
|
|
endif
|
2018-09-13 09:44:33 +00:00
|
|
|
|
2018-09-26 14:40:41 +00:00
|
|
|
release-windows-desktop: prod-build-desktop ##@build build release for desktop release
|
2019-02-01 10:44:51 +00:00
|
|
|
ifdef IN_NIX_SHELL
|
2018-09-26 14:40:41 +00:00
|
|
|
TARGET_SYSTEM_NAME=Windows scripts/build-desktop.sh
|
2019-02-01 10:44:51 +00:00
|
|
|
endif
|
2018-09-26 14:40:41 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
prod-build: _ensure-in-nix-shell
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh android
|
|
|
|
scripts/prepare-for-platform.sh ios
|
2018-01-22 17:35:48 +00:00
|
|
|
lein prod-build
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
prod-build-android: _ensure-in-nix-shell
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh android
|
2018-02-06 18:10:35 +00:00
|
|
|
lein prod-build-android
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
prod-build-ios: _ensure-in-nix-shell
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh ios
|
2018-02-06 18:10:35 +00:00
|
|
|
lein prod-build-ios
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
prod-build-desktop: _ensure-in-nix-shell
|
2018-09-13 09:44:33 +00:00
|
|
|
git clean -qdxf -f ./index.desktop.js desktop/
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh desktop
|
2018-09-13 09:44:33 +00:00
|
|
|
lein prod-build-desktop
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
|
|
|
# REPL
|
|
|
|
# -------------
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
_watch-%: _ensure-in-nix-shell ##@watch Start development for device
|
|
|
|
$(eval SYSTEM := $(word 2, $(subst -, , $@)))
|
|
|
|
$(eval DEVICE := $(word 3, $(subst -, , $@)))
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh $(SYSTEM)
|
2019-02-01 10:44:51 +00:00
|
|
|
clj -R:dev build.clj watch --platform $(SYSTEM) --$(SYSTEM)-device $(DEVICE)
|
2018-07-17 15:59:18 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
watch-ios-real: _watch-ios-real ##@watch Start development for iOS real device
|
2018-07-17 15:59:18 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
watch-ios-simulator: _watch-ios-simulator ##@watch Start development for iOS simulator
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
watch-android-real: _watch-android-real ##@watch Start development for Android real device
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
watch-android-avd: _watch-android-avd ##@watch Start development for Android AVD
|
|
|
|
|
|
|
|
watch-android-genymotion: _watch-android-genymotion ##@watch Start development for Android Genymotion
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-10-23 12:17:37 +00:00
|
|
|
watch-desktop: ##@watch Start development for Desktop
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh desktop
|
2018-10-23 12:17:37 +00:00
|
|
|
clj -R:dev build.clj watch --platform desktop
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
|
|
|
# Run
|
|
|
|
# -------------
|
2019-02-01 10:44:51 +00:00
|
|
|
_run-%: _ensure-in-nix-shell
|
|
|
|
$(eval SYSTEM := $(word 2, $(subst -, , $@)))
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh $(SYSTEM)
|
2019-02-01 10:44:51 +00:00
|
|
|
react-native run-$(SYSTEM)
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-03-20 15:16:51 +00:00
|
|
|
run-android: _ensure-in-nix-shell ##@run Run Android build
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh android
|
2019-03-20 15:16:51 +00:00
|
|
|
react-native run-android --appIdSuffix debug
|
2019-02-01 10:44:51 +00:00
|
|
|
|
|
|
|
run-desktop: _run-desktop ##@run Run Desktop build
|
2018-10-23 12:17:37 +00:00
|
|
|
|
2018-06-08 11:44:11 +00:00
|
|
|
SIMULATOR=
|
2019-02-01 10:44:51 +00:00
|
|
|
run-ios: _ensure-in-nix-shell ##@run Run iOS build
|
2019-03-22 11:00:32 +00:00
|
|
|
scripts/prepare-for-platform.sh ios
|
2018-06-06 13:47:28 +00:00
|
|
|
ifneq ("$(SIMULATOR)", "")
|
|
|
|
react-native run-ios --simulator="$(SIMULATOR)"
|
|
|
|
else
|
2017-12-13 21:45:49 +00:00
|
|
|
react-native run-ios
|
2018-06-06 13:47:28 +00:00
|
|
|
endif
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2017-12-23 09:36:25 +00:00
|
|
|
#--------------
|
|
|
|
# Tests
|
|
|
|
#--------------
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
test: _ensure-in-nix-shell ##@test Run tests once in NodeJS
|
2017-12-23 09:36:25 +00:00
|
|
|
lein with-profile test doo node test once
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
test-auto: _ensure-in-nix-shell ##@test Run tests in interactive (auto) mode in NodeJS
|
2017-12-23 09:36:25 +00:00
|
|
|
lein with-profile test doo node test
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
|
|
|
# Other
|
|
|
|
#--------------
|
2019-02-01 10:44:51 +00:00
|
|
|
react-native: _ensure-in-nix-shell ##@other Start react native packager
|
2018-11-23 08:56:31 +00:00
|
|
|
@scripts/start-react-native.sh
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
geth-connect: _ensure-in-nix-shell ##@other Connect to Geth on the device
|
2017-12-13 21:45:49 +00:00
|
|
|
adb forward tcp:8545 tcp:8545
|
|
|
|
build/bin/geth attach http://localhost:8545
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
android-ports: _ensure-in-nix-shell ##@other Add proxies to Android Device/Simulator
|
2018-09-30 06:22:33 +00:00
|
|
|
adb reverse tcp:8081 tcp:8081
|
|
|
|
adb reverse tcp:3449 tcp:3449
|
|
|
|
adb reverse tcp:4567 tcp:4567
|
|
|
|
adb forward tcp:5561 tcp:5561
|
2018-04-10 08:29:18 +00:00
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
android-logcat: _ensure-in-nix-shell
|
2018-11-20 18:36:11 +00:00
|
|
|
adb logcat | grep -e StatusModule -e ReactNativeJS -e StatusNativeLogs
|
2018-03-13 11:55:42 +00:00
|
|
|
|
2019-01-29 18:46:11 +00:00
|
|
|
_list:
|
|
|
|
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
|
|
|
|
|
|
|
|
_unknown-startdev-target-%:
|
|
|
|
@ echo "Unknown target device '$*'. Supported targets:"
|
|
|
|
@ ${MAKE} _list | grep "watch-" | sed s/watch-/startdev-/
|
|
|
|
@ exit 1
|
|
|
|
|
2019-02-01 10:44:51 +00:00
|
|
|
_startdev-%: _ensure-in-nix-shell
|
2018-03-13 11:55:42 +00:00
|
|
|
$(eval SYSTEM := $(word 2, $(subst -, , $@)))
|
|
|
|
$(eval DEVICE := $(word 3, $(subst -, , $@)))
|
2019-03-26 13:06:24 +00:00
|
|
|
scripts/prepare-for-platform.sh ${SYSTEM} || $(MAKE) _unknown-startdev-target-$@
|
2019-01-29 18:46:11 +00:00
|
|
|
@ if [ -z "$(DEVICE)" ]; then \
|
2019-02-01 10:44:51 +00:00
|
|
|
$(MAKE) watch-$(SYSTEM) || $(MAKE) _unknown-startdev-target-$@; \
|
2018-11-29 16:59:05 +00:00
|
|
|
else \
|
2019-02-01 10:44:51 +00:00
|
|
|
$(MAKE) watch-$(SYSTEM)-$(DEVICE) || $(MAKE) _unknown-startdev-target-$@; \
|
2018-11-29 16:59:05 +00:00
|
|
|
fi
|
2019-01-29 18:46:11 +00:00
|
|
|
|
|
|
|
startdev-android-avd: _startdev-android-avd
|
|
|
|
startdev-android-genymotion: _startdev-android-genymotion
|
|
|
|
startdev-android-real: _startdev-android-real
|
|
|
|
startdev-desktop: _startdev-desktop
|
|
|
|
startdev-ios-real: _startdev-ios-real
|
|
|
|
startdev-ios-simulator: _startdev-ios-simulator
|