3 @echo " .:. Sugar - The Dot-Files Manager .:."
6 @echo " make lint - lint The Sugar System"
7 @echo " make update - update repository with the current dot files"
8 @echo " make commit - commit changes to the repository"
9 @echo " make install - update the current dot files with the repository"
10 @echo " make import FILES=<FILES>"
11 @echo " - import the dot files into the repository"
15 perl ./tools/list-files.pl | perl ./tools/find-missing.pl
16 perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
17 perl ./tools/list-files.pl | perl ./tools/find-changed.pl
21 perl ./tools/list-files.pl | perl ./tools/update.pl
22 perl ./tools/list-files.pl | perl ./tools/find-outdated.pl
27 git commit -m 'Auto commit by The Sugar System.'
29 git log --stat --unified -1 --color
32 perl ./tools/list-files.pl | perl ./tools/install.pl
36 @echo "Specify at least one file."
37 @echo "Usage: make import FILES=<FILES>"
41 perl ./tools/import.pl $(FILES)
45 .PHONY: help lint update commit install import