]> gitweb @ CieloNegro.org - sugar.git/blob - GNUmakefile
Auto commit by The Sugar System.
[sugar.git] / GNUmakefile
1 lint:
2         perl ./tools/list-files.pl | perl ./tools/find-missing.pl
3         perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
4         perl ./tools/list-files.pl | perl ./tools/find-changed.pl
5
6 update:
7         git pull
8         perl ./tools/list-files.pl | perl ./tools/update.pl
9         perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
10         git status
11
12 commit:
13         git add -A
14         git commit -m 'Auto commit by The Sugar System.'
15         git push
16         git log --stat --unified -1 --color
17
18 install: lint
19         perl ./tools/list-files.pl | perl ./tools/install.pl
20
21 .PHONY: lint update commit install