2019-01-29 18:46:11 +00:00
|
|
|
.PHONY: clean setup react-native test release
|
2017-12-13 21:45:49 +00:00
|
|
|
|
|
|
|
help: ##@other Show this help
|
|
|
|
@perl -e '$(HELP_FUN)' $(MAKEFILE_LIST)
|
|
|
|
|
2018-11-27 12:13:21 +00:00
|
|
|
DO_SPACE_URL = https://status-go.ams3.digitaloceanspaces.com
|
2019-01-18 14:09:23 +00:00
|
|
|
GITHUB_URL = https://github.com/status-im/status-go/releases
|
2018-09-18 12:22:30 +00:00
|
|
|
RCTSTATUS_DIR = modules/react-native-status/ios/RCTStatus
|
|
|
|
ANDROID_LIBS_DIR = android/app/libs
|
|
|
|
STATUS_GO_VER = $(shell cat STATUS_GO_VERSION)
|
|
|
|
|
|
|
|
STATUS_GO_IOS_ARCH = $(RCTSTATUS_DIR)/status-go-ios-$(STATUS_GO_VER).zip
|
|
|
|
STATUS_GO_DRO_ARCH = $(ANDROID_LIBS_DIR)/status-go-$(STATUS_GO_VER).aar
|
|
|
|
|
2018-08-30 14:14:17 +00:00
|
|
|
OS := $(shell uname)
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
# 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)
|
|
|
|
WHITE := $(shell tput -Txterm setaf 7)
|
|
|
|
YELLOW := $(shell tput -Txterm setaf 3)
|
|
|
|
RESET := $(shell tput -Txterm sgr0)
|
|
|
|
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-01-18 14:09:23 +00:00
|
|
|
__toolversion = $(shell $(GIT_ROOT)/scripts/toolversion $(1))
|
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
|
2018-11-21 12:14:43 +00:00
|
|
|
git clean -dxf -f -e android/local.properties
|
2018-08-30 12:56:45 +00:00
|
|
|
|
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-11-30 14:32:30 +00:00
|
|
|
@./scripts/run-environment-check.sh setup
|
2018-03-09 00:13:28 +00:00
|
|
|
|
2018-09-13 09:44:33 +00:00
|
|
|
prepare-desktop: ##@prepare Install desktop platform dependencies and prepare workspace
|
|
|
|
scripts/prepare-for-platform.sh desktop
|
2018-11-28 18:02:20 +00:00
|
|
|
yarn install --frozen-lockfile
|
2018-09-27 09:31:22 +00:00
|
|
|
|
2018-09-18 12:22:30 +00:00
|
|
|
$(STATUS_GO_IOS_ARCH):
|
2018-11-26 12:22:00 +00:00
|
|
|
curl --fail --silent --location \
|
2018-11-27 12:13:21 +00:00
|
|
|
"${DO_SPACE_URL}/status-go-ios-$(STATUS_GO_VER).zip" \
|
2018-11-26 12:22:00 +00:00
|
|
|
--output "$(STATUS_GO_IOS_ARCH)"; \
|
|
|
|
if [ $$? -ne 0 ]; then \
|
2018-11-27 12:13:21 +00:00
|
|
|
echo "Failed to download from DigitalOcean Bucket, checking GitHub..."; \
|
2018-11-26 12:22:00 +00:00
|
|
|
curl --fail --silent --location \
|
2019-01-18 14:09:23 +00:00
|
|
|
"$(GITHUB_URL)/download/$(STATUS_GO_VER)/status-go-ios.zip" \
|
2018-11-26 12:22:00 +00:00
|
|
|
--output "$(STATUS_GO_IOS_ARCH)"; \
|
|
|
|
if [ $$? -ne 0 ]; then \
|
2018-11-27 12:13:21 +00:00
|
|
|
echo "Failed to download from GitHub!"; \
|
2019-01-18 14:09:23 +00:00
|
|
|
echo "Please check the contents of your STATUS_GO_VERSION are correct."; \
|
|
|
|
echo "Verify the version has been uploaded:"; \
|
|
|
|
echo " * $(DO_SPACE_URL)/index.html"; \
|
|
|
|
echo " * $(GITHUB_URL)"; \
|
|
|
|
exit 1; \
|
2018-11-26 12:22:00 +00:00
|
|
|
fi \
|
|
|
|
fi
|
2018-09-18 12:22:30 +00:00
|
|
|
|
|
|
|
$(STATUS_GO_DRO_ARCH):
|
2018-10-09 09:53:49 +00:00
|
|
|
mkdir -p $(ANDROID_LIBS_DIR)
|
2018-11-26 12:22:00 +00:00
|
|
|
curl --fail --silent --location \
|
2018-11-27 12:13:21 +00:00
|
|
|
"${DO_SPACE_URL}/status-go-android-$(STATUS_GO_VER).aar" \
|
2018-11-26 12:22:00 +00:00
|
|
|
--output "$(STATUS_GO_DRO_ARCH)"; \
|
|
|
|
if [ $$? -ne 0 ]; then \
|
2018-11-27 12:13:21 +00:00
|
|
|
echo "Failed to download from DigitalOcean Bucket, checking GitHub..."; \
|
2018-11-26 12:22:00 +00:00
|
|
|
curl --fail --silent --location \
|
2019-02-12 11:35:26 +00:00
|
|
|
"$(GITHUB_URL)/download/$(STATUS_GO_VER)/status-go-android.aar" \
|
2018-11-26 12:22:00 +00:00
|
|
|
--output "$(STATUS_GO_DRO_ARCH)"; \
|
|
|
|
if [ $$? -ne 0 ]; then \
|
2018-11-27 12:13:21 +00:00
|
|
|
echo "Failed to download from GitHub!"; \
|
2018-11-26 12:22:00 +00:00
|
|
|
fi \
|
|
|
|
fi
|
2018-09-18 12:22:30 +00:00
|
|
|
|
2018-11-21 12:14:43 +00:00
|
|
|
prepare-ios: $(STATUS_GO_IOS_ARCH) ##@prepare Install and prepare iOS-specific dependencies
|
|
|
|
scripts/prepare-for-platform.sh ios
|
2018-11-28 18:02:20 +00:00
|
|
|
yarn install --frozen-lockfile
|
2018-11-20 11:03:21 +00:00
|
|
|
unzip -q -o "$(STATUS_GO_IOS_ARCH)" -d "$(RCTSTATUS_DIR)"
|
2018-08-30 14:14:17 +00:00
|
|
|
ifeq ($(OS),Darwin)
|
2019-02-27 21:48:37 +00:00
|
|
|
# CocoaPods are trash and can't handle other pod instances running at the same time
|
|
|
|
./scripts/wait-for.sh pod 240
|
2018-08-30 14:14:17 +00:00
|
|
|
cd ios && pod install
|
|
|
|
endif
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-11-21 12:14:43 +00:00
|
|
|
prepare-android: $(STATUS_GO_DRO_ARCH) ##@prepare Install and prepare Android-specific dependencies
|
|
|
|
scripts/prepare-for-platform.sh android
|
2018-11-28 18:02:20 +00:00
|
|
|
yarn install --frozen-lockfile
|
2018-08-30 14:14:17 +00:00
|
|
|
cd android && ./gradlew react-native-android:installArchives
|
2018-07-26 11:22:15 +00:00
|
|
|
|
2018-09-13 09:44:33 +00:00
|
|
|
prepare-mobile: prepare-android prepare-ios ##@prepare Install and prepare mobile platform specific dependencies
|
|
|
|
|
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
|
2017-12-13 21:45:49 +00:00
|
|
|
react-native run-android --variant=release
|
|
|
|
|
2018-02-06 18:10:35 +00:00
|
|
|
release-ios: prod-build-ios ##@build build release for iOS release
|
2018-11-15 14:32:18 +00:00
|
|
|
@echo "Build in XCode, see https://status.im/build_status/ for instructions"
|
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
|
|
|
|
scripts/build-desktop.sh
|
|
|
|
|
2018-09-26 14:40:41 +00:00
|
|
|
release-windows-desktop: prod-build-desktop ##@build build release for desktop release
|
|
|
|
TARGET_SYSTEM_NAME=Windows scripts/build-desktop.sh
|
|
|
|
|
2018-01-22 17:35:48 +00:00
|
|
|
prod-build:
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh android
|
|
|
|
scripts/run-environment-check.sh ios
|
2018-01-22 17:35:48 +00:00
|
|
|
lein prod-build
|
|
|
|
|
2018-02-06 18:10:35 +00:00
|
|
|
prod-build-android:
|
2018-05-08 17:06:45 +00:00
|
|
|
rm ./modules/react-native-status/android/libs/status-im/status-go/local/status-go-local.aar 2> /dev/null || true
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh android
|
2018-02-06 18:10:35 +00:00
|
|
|
lein prod-build-android
|
|
|
|
|
|
|
|
prod-build-ios:
|
2018-05-08 17:06:45 +00:00
|
|
|
rm -r ./modules/react-native-status/ios/RCTStatus/Statusgo.framework/ 2> /dev/null || true
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh ios
|
2018-02-06 18:10:35 +00:00
|
|
|
lein prod-build-ios
|
|
|
|
|
2018-05-08 17:06:45 +00:00
|
|
|
full-prod-build: ##@build build prod for both Android and iOS
|
2018-08-30 12:56:45 +00:00
|
|
|
./scripts/bundle-status-go.sh ios android
|
2018-05-08 17:06:45 +00:00
|
|
|
$(MAKE) prod-build
|
|
|
|
rm -r ./modules/react-native-status/ios/RCTStatus/Statusgo.framework/ 2> /dev/null || true
|
|
|
|
rm ./modules/react-native-status/android/libs/status-im/status-go/local/status-go-local.aar 2> /dev/null
|
|
|
|
|
2018-09-13 09:44:33 +00:00
|
|
|
prod-build-desktop:
|
|
|
|
git clean -qdxf -f ./index.desktop.js desktop/
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh desktop
|
2018-09-13 09:44:33 +00:00
|
|
|
lein prod-build-desktop
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
|
|
|
# REPL
|
|
|
|
# -------------
|
|
|
|
|
2018-07-26 11:22:15 +00:00
|
|
|
watch-ios-real: ##@watch Start development for iOS real device
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh ios
|
2018-07-26 11:22:15 +00:00
|
|
|
clj -R:dev build.clj watch --platform ios --ios-device real
|
2018-07-17 15:59:18 +00:00
|
|
|
|
2018-07-26 11:22:15 +00:00
|
|
|
watch-ios-simulator: ##@watch Start development for iOS simulator
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh ios
|
2018-07-26 11:22:15 +00:00
|
|
|
clj -R:dev build.clj watch --platform ios --ios-device simulator
|
2018-07-17 15:59:18 +00:00
|
|
|
|
2018-07-26 11:22:15 +00:00
|
|
|
watch-android-real: ##@watch Start development for Android real device
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh android
|
2018-07-26 11:22:15 +00:00
|
|
|
clj -R:dev build.clj watch --platform android --android-device real
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-07-26 11:22:15 +00:00
|
|
|
watch-android-avd: ##@watch Start development for Android AVD
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh android
|
2018-07-26 11:22:15 +00:00
|
|
|
clj -R:dev build.clj watch --platform android --android-device avd
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-07-26 11:22:15 +00:00
|
|
|
watch-android-genymotion: ##@watch Start development for Android Genymotion
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh android
|
2018-07-26 11:22:15 +00:00
|
|
|
clj -R:dev build.clj watch --platform android --android-device genymotion
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-10-23 12:17:37 +00:00
|
|
|
watch-desktop: ##@watch Start development for Desktop
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.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
|
|
|
|
# -------------
|
|
|
|
run-android: ##@run Run Android build
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh android
|
2018-04-26 05:16:03 +00:00
|
|
|
react-native run-android --appIdSuffix debug
|
2017-12-13 21:45:49 +00:00
|
|
|
|
2018-11-21 07:02:53 +00:00
|
|
|
run-desktop: ##@run Run Desktop build
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.sh desktop
|
2018-10-23 12:17:37 +00:00
|
|
|
react-native run-desktop
|
|
|
|
|
2018-06-08 11:44:11 +00:00
|
|
|
SIMULATOR=
|
2017-12-13 21:45:49 +00:00
|
|
|
run-ios: ##@run Run iOS build
|
2018-11-30 14:32:30 +00:00
|
|
|
scripts/run-environment-check.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
|
|
|
|
#--------------
|
|
|
|
|
|
|
|
test: ##@test Run tests once in NodeJS
|
|
|
|
lein with-profile test doo node test once
|
|
|
|
|
|
|
|
test-auto: ##@test Run tests in interactive (auto) mode in NodeJS
|
|
|
|
lein with-profile test doo node test
|
|
|
|
|
2017-12-13 21:45:49 +00:00
|
|
|
#--------------
|
|
|
|
# Other
|
|
|
|
#--------------
|
|
|
|
react-native: ##@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
|
|
|
|
|
|
|
geth-connect: ##@other Connect to Geth on the device
|
|
|
|
adb forward tcp:8545 tcp:8545
|
|
|
|
build/bin/geth attach http://localhost:8545
|
|
|
|
|
2018-08-28 19:40:29 +00:00
|
|
|
android-ports: ##@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
|
|
|
|
2018-11-20 18:36:11 +00:00
|
|
|
android-logcat:
|
|
|
|
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
|
|
|
|
|
|
|
|
_startdev-%:
|
2018-03-13 11:55:42 +00:00
|
|
|
$(eval SYSTEM := $(word 2, $(subst -, , $@)))
|
|
|
|
$(eval DEVICE := $(word 3, $(subst -, , $@)))
|
2019-01-29 18:46:11 +00:00
|
|
|
${MAKE} prepare-${SYSTEM} || ${MAKE} _unknown-startdev-target-$@
|
|
|
|
@ if [ -z "$(DEVICE)" ]; then \
|
|
|
|
${MAKE} watch-$(SYSTEM) || ${MAKE} _unknown-startdev-target-$@; \
|
2018-11-29 16:59:05 +00:00
|
|
|
else \
|
2019-01-29 18:46:11 +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
|