-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile
56 lines (46 loc) · 1.62 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
SHELL := /usr/bin/env bash
flutter := ./flutter/bin/flutter
version_define = --dart-define=ORGRO_VERSION=$(shell sed -nE 's/version: *(([0-9.])+)\+.*/\1/p' pubspec.yaml)
ui_string_keys = jq -r 'keys | .[] | select(startswith("@") | not)' $(1)
ui_string_values = jq -r 'to_entries | .[] | select(.key | startswith("@") | not) | .value' $(1)
spellcheck = $(call ui_string_values,lib/l10n/app_$(1).arb) | \
aspell pipe --lang=$(1) --home-dir=. --personal=.aspell.$(1).pws | \
awk '/^&/ {w++; print} END {exit w}'
.PHONY: all
all: release
.PHONY: run
run: ## Run app with full environment
$(flutter) run $(version_define) $(args)
.PHONY: clean
clean: ## Clean project
clean:
$(flutter) clean
.PHONY: test
test: ## Run tests
$(flutter) analyze
$(flutter) test
.PHONY: dirty-check
dirty-check:
$(if $(shell git status --porcelain),$(error 'You have uncommitted changes. Aborting.'))
.PHONY: l10n-check
l10n-check: ## Check l10n data for issues
$(foreach _,$(wildcard lib/l10n/*.arb),\
diff <($(call ui_string_keys,lib/l10n/app_en.arb)) <($(call ui_string_keys,$(_)));)
$(call spellcheck,en_US)
$(call spellcheck,en_GB)
.PHONY: build
build:
find ./assets -name '*~' -delete
$(flutter) build appbundle $(version_define)
$(flutter) build ipa $(version_define)
.PHONY: release
release: ## Prepare Android bundle and iOS archive for release
release: dirty-check l10n-check test build
open -a Transporter build/ios/ipa/Orgro.ipa
.PHONY: help
help: ## Show this help text
$(info usage: make [target])
$(info )
$(info Available targets:)
@awk -F ':.*?## *' '/^[^\t].+?:.*?##/ \
{printf " %-24s %s\n", $$1, $$2}' $(MAKEFILE_LIST)