-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
32 lines (28 loc) · 1.36 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
.PHONY: help
help:
@echo "--------------------------------------------------------------------"
@echo " Memories "
@echo " web and mobile app for social networking "
@echo " focusing on sharing past memories with other users worldwide "
@echo "--------------------------------------------------------------------"
@echo " targets: test, pre-commit, help "
@echo "--------------------------------------------------------------------"
@echo " Flutter test: "
@echo " > make test; "
@echo " Run pre-commit for all files: "
@echo " > make pre-commit; "
@echo " Help: "
@echo " > make; "
@echo " > make help; "
@echo "--------------------------------------------------------------------"
test:
ifeq ($(OS),Windows_NT)
powershell ./hack/flutter-test.ps1
else
./hack/flutter-test.sh
endif
pre-commit:
@pre-commit install
pre-commit run --all-files
git-stats:
git log | git shortlog -sne