An advanced Ethereum/EVM mobile wallet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
alpha-wallet-ios/Makefile

29 lines
478 B

.DEFAULT_GOAL := bootstrap
exists_pod = $(shell command -v pod 2> /dev/null)
exists_fastlane = $(shell command -v fastlane 2> /dev/null)
install_env:
ifeq "${exists_pod}" ""
sudo gem install cocoapods
endif
ifeq "${exists_fastlane}" ""
brew cask install fastlane
endif
@echo "All dependencies was installed"
install:
ifeq "${exists_pod}" ""
@echo "Cocopods is not installed. Use `make install_env`"
endif
pod install
bootstrap: install
release:
fastlane release