summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-10-20 22:11:51 -0400
committerJesse Luehrs <doy@tozt.net>2017-10-20 22:12:00 -0400
commit474e9cff6f95994499879ebbab5ba44201253778 (patch)
tree98e1afe27b47177cbd782876b0a66863980e8d62 /Makefile
parent7e17dfc120860d2e085856cd45a526cd16d67cce (diff)
downloadconf-474e9cff6f95994499879ebbab5ba44201253778.tar.gz
conf-474e9cff6f95994499879ebbab5ba44201253778.zip
fix makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index df099a9..e3e0ff7 100644
--- a/Makefile
+++ b/Makefile
@@ -58,7 +58,6 @@ INSTALL = agignore \
terminfo \
tex \
vim \
- vimfx \
weechat \
zsh
INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL))
@@ -87,7 +86,7 @@ build : submodules $(BUILD)
submodules :
@git submodule update --init --recursive
-install : build $(INSTALLED) /var/spool/cron/$(USER) $(INTO)/Maildir/.notmuch $(INTO)/.config/fish
+install : build $(INSTALLED) /var/spool/cron/$(USER) $(INTO)/Maildir/.notmuch
@for dir in $(EMPTYDIRS); do mkdir -p $(INTO)/$$dir; done
@chmod 600 msmtprc
@chmod 700 gnupg
@@ -121,11 +120,6 @@ $(INTO)/Maildir/.notmuch: notmuch
@[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
$(LN) $(PWD)/$< $@
-$(INTO)/.config/fish: fish
- mkdir -p $(INTO)/.config
- @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
- $(LN) $(PWD)/$< $@
-
%.spl : %
@vim -u NONE -c':mkspell! $< | :q'