forked from Automattic/pocket-casts-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (25 loc) · 1.28 KB
/
Makefile
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
28
29
30
31
32
33
34
BUNDLE=rbenv exec bundle
LANG_VAR=LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
FASTLANE=$(LANG_VAR) $(BUNDLE) exec fastlane
SWIFTLINT=./Pods/SwiftLint/swiftlint
help: ## Show this list of commands
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
swift_percentage: ## Swift and Obj-C percentage on the project
./scripts/count.rb
generate_colors: ## Generate colors and themes based on themes.csv
ruby scripts/themes/generate_themes.rb scripts/themes/theme.csv
lint:
$(SWIFTLINT) lint --quiet
format:
$(SWIFTLINT) lint --autocorrect --quiet
upload_dsyms: ## Upload dSYMs
./scripts/upload-symbols -gsp $(HOME)/.configure/pocketcasts-ios/secrets/GoogleService-Info.plist -p ios ./podcasts.app.dSYM.zip
install_dependencies: ## Install dependencies to run this project
bundle install
bundle exec pod install --repo-update
update_proto: ## Generates the protobuffer Swift files
./scripts/update_proto.sh $(API_PATH)
external_contributor: ## Generates an empty ApiCredentials.swift so the app builds
@cp podcasts/Credentials/ApiCredentials.tpl podcasts/Credentials/LocalApiCredentials.swift
@sed -i '' 's/%{.*}//' "podcasts/Credentials/LocalApiCredentials.swift"
$(info You're ready to build the app, go ahead! 🎙)