Automate file-finding for diff
[khome.git] / Makefile
index 4dd417a..02522ba 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,8 @@ MAKEFLAGS := --no-builtin-rules
 DEPS := $(wildcard deps/*)
 
 .PHONY: \
-       default \
+    default \
+    clean \
     $(DEPS) \
     deps \
     home \
@@ -64,6 +65,9 @@ pkgs_golang: list pkgs-golang.list
 pkgs_ubuntu: list pkgs-ubuntu.list
        sudo apt install $(shell ./list pkgs-ubuntu.list)
 
+pkgs_ubuntu_debfiles: list pkgs-ubuntu-debfiles.list
+       ./install-debfiles pkgs-ubuntu-debfiles.list
+
 #
 # PIP
 #
@@ -122,21 +126,10 @@ endef
 $(foreach d,$(DEPS),$(eval $(call GEN_DEP_RULE,$(d))))
 
 diff:
-       diff  $(HOME)/.Rprofile                           home/.Rprofile                           ||  true
-       diff  $(HOME)/.compton.conf                       home/.compton.conf                       ||  true
-       diff  $(HOME)/.config/dunst/dunstrc               home/.config/dunst/dunstrc               ||  true
-       diff  $(HOME)/.config/mimeapps.list               home/.config/mimeapps.list               ||  true
-       diff  $(HOME)/.config/neofetch/config.conf        home/.config/neofetch/config.conf        ||  true
-       diff  $(HOME)/.config/ranger/rc.conf              home/.config/ranger/rc.conf              ||  true
-       diff  $(HOME)/.config/screengrab/screengrab.conf  home/.config/screengrab/screengrab.conf  ||  true
-       diff  $(HOME)/.fonts.conf                         home/.fonts.conf                         ||  true
-       diff  $(HOME)/.mpdconf                            home/.mpdconf                            ||  true
-       diff  $(HOME)/.newsboat/config                    home/.newsboat/config                    ||  true
-       diff  $(HOME)/.profile                            home/.profile                            ||  true
-       diff  $(HOME)/.tmux.conf                          home/.tmux.conf                          ||  true
-       diff  $(HOME)/.xbindkeysrc                        home/.xbindkeysrc                        ||  true
-       diff  $(HOME)/lib/login_aliases.sh                home/lib/login_aliases.sh                ||  true
-       diff  $(HOME)/lib/login_functions.sh              home/lib/login_functions.sh              ||  true
-       diff  $(HOME)/lib/login_variables.sh              home/lib/login_variables.sh              ||  true
-       diff  $(HOME)/lib/login_variables_dpi_high.sh     home/lib/login_variables_dpi_high.sh     ||  true
-       diff  $(HOME)/lib/login_variables_dpi_norm.sh     home/lib/login_variables_dpi_norm.sh     ||  true
+       find home -type f -print0 \
+       | sed -z 's/^home\///g' \
+       | xargs -0 -I% sh -c 'echo %; diff --color=always ~/% home/%'
+
+clean:
+       rm -rf ./debfiles
+       cd src && make clean
This page took 0.024594 seconds and 4 git commands to generate.