]> gitweb @ CieloNegro.org - sugar.git/blobdiff - GNUmakefile
Auto commit by The Sugar System.
[sugar.git] / GNUmakefile
index 325e68ea29bbab8d47f1217ab5a03d32fc6749c8..ca56c8862d4bcd61b07a2c62a7cc21386a31926d 100644 (file)
@@ -1,5 +1,21 @@
 lint:
-       @perl ./tools/list-files.pl | perl ./tools/find-missing.pl
-       @perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
+       perl ./tools/list-files.pl | perl ./tools/find-missing.pl
+       perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
+       perl ./tools/list-files.pl | perl ./tools/find-changed.pl
 
-.PHONY: lint
\ No newline at end of file
+update:
+       git pull
+       perl ./tools/list-files.pl | perl ./tools/update.pl
+       perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
+       git status
+
+commit:
+       git add -A
+       git commit -m 'Auto commit by The Sugar System.'
+       git push
+       git log --stat --unified -1 --color
+
+install: lint
+       perl ./tools/list-files.pl | perl ./tools/install.pl
+
+.PHONY: lint update commit install