X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=GNUmakefile;h=8d1bdb76085ae881990efa421094823b25320f41;hb=2b4f9139608df6be98977cbed51912a4e1c9ed97;hp=325e68ea29bbab8d47f1217ab5a03d32fc6749c8;hpb=79c402cacf38d6e59d1872c42c569672e3796396;p=sugar.git diff --git a/GNUmakefile b/GNUmakefile index 325e68e..8d1bdb7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,58 @@ +help: + @echo + @echo " .:. Sugar - The Dot-Files Manager .:." + @echo + @echo "Usage:" + @echo " make lint - lint The Sugar System" + @echo " make update - update repository with the current dot files" + @echo " make commit - commit changes to the repository" + @echo " make install - update the current dot files with the repository" + @echo " make import FILES=" + @echo " - import the dot files into the repository" + @echo " make diff FILE=" + @echo " - show diff of the dot file" + @echo + 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 + -git status + +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 + +ifeq ($(FILES),) +import: + @echo "Specify at least one file." + @echo "Usage: make import FILES=" + @exit 1 +else +import: + perl ./tools/import.pl $(FILES) + -git status +endif + +ifeq ($(FILE),) +diff: + @echo "Specify one file." + @echo "Usage: make diff FILE=" + @exit 1 +else +diff: + perl ./tools/diff.pl $(FILE) | $(PAGER) +endif -.PHONY: lint \ No newline at end of file +.PHONY: help lint update commit install import diff