]> gitweb @ CieloNegro.org - sugar.git/blobdiff - GNUmakefile
Auto commit by The Sugar System.
[sugar.git] / GNUmakefile
index 866991b30b96671a7298462c81ca4949960fb008..107eae235871179e7ae790efce16ae4194e1634f 100644 (file)
@@ -7,6 +7,8 @@ help:
        @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=<FILES>"
+       @echo "               - import the dot files into the repository"
        @echo
 
 lint:
@@ -29,4 +31,15 @@ commit:
 install: lint
        perl ./tools/list-files.pl | perl ./tools/install.pl
 
-.PHONY: help lint update commit install
+ifeq ($(FILES),)
+import:
+       @echo "Specify at least one file."
+       @echo "Usage: make import FILES=<FILES>"
+       @exit 1
+else
+import:
+       perl ./tools/import.pl $(FILES)
+       -git status
+endif
+
+.PHONY: help lint update commit install import