Convert notify-done alias to notify_done function with more features.
[khome.git] / Makefile
index 7f3ef91..b72f1f9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -158,6 +158,7 @@ $(foreach d,$(DEPS),$(eval $(call GEN_DEP_RULE,$(d))))
 diff:
        find home -type f -print0 \
        | $(SED) -z 's/^home\///g' \
+       | sort -zr \
        | xargs -0 -I% sh -c 'echo %; $(DIFF) --color=auto ~/% home/%'
 
 pull:
@@ -166,6 +167,10 @@ pull:
        | xargs -0 -I% sh -c '$(DIFF) -q ~/% home/% > /dev/null || cp ~/% home/%'
 
 push:
+       # TODO Backup files before replacing.
+       #      But - recursive copy is not a good strategy for this.
+       #      Need to do a file by file pass, like the diff recipe.
+       #
        # Limit depth because directories are copied recursively:
        find home -maxdepth 1 -print0 \
        | $(GREP) -zv '^home$$' \
This page took 0.027061 seconds and 4 git commands to generate.