diff options
author | Ryan Kavanagh <rak@debian.org> | 2012-01-03 11:41:39 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2012-01-03 11:41:39 -0500 |
commit | bc20a470131c9f4a1d341ec9627ff2f0cccbdedd (patch) | |
tree | e46f6b6252d0c926abdf3a6e641ce82a7f8b5d1e /dm | |
parent | Better handle encrypted files (diff) |
Track ssh keys and config
Diffstat (limited to '')
-rwxr-xr-x | dm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -50,6 +50,7 @@ GLOBAL_FILES = \ .screenlayout/ \ .screenrc-mail \ .signature \ + .ssh/ \ .urxvt/ \ .vim/ \ .vimperatorrc \ @@ -89,7 +90,7 @@ all: clean build # This target relies on GLOBAL_FILES being before LOCAL_FILES so that the # build/LOCAL_FILES targets overwrite what was copied in GLOBAL_FILES. -BUILD = $(patsubst %,build/%,$(GLOBAL_FILES) $(LOCAL_FILES)) +BUILD = $(patsubst %,build/%,$(GLOBAL_FILES) $(LOCAL_FILES) $(GPG_FILES)) build: $(BUILD) |