diff options
author | Robert Alessi <alessi@robertalessi.net> | 2023-03-25 09:35:43 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2023-03-25 09:35:43 +0100 |
commit | 6bd23e94ef2b1b35e6ac5ae81a8dc100e01209f0 (patch) | |
tree | 37451852ae65cd6374f662209c850fed1aa8a7be /Makefile | |
parent | c1e029d0afd39ffcfb7142cce12325aae3869533 (diff) | |
download | ekdosis-6bd23e94ef2b1b35e6ac5ae81a8dc100e01209f0.tar.gz |
.el style files have to go into /home/robert/.emacs.d/auctex/style
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -66,16 +66,16 @@ pandoc: | |||
66 | 66 | ||
67 | auctex: | 67 | auctex: |
68 | emacs --batch -f batch-byte-compile ekdosis.el &>/dev/null | 68 | emacs --batch -f batch-byte-compile ekdosis.el &>/dev/null |
69 | if [ ! -d "$(HOMEDIR)/.emacs.d/auctex/auto" ]; then \ | 69 | if [ ! -d "$(HOMEDIR)/.emacs.d/auctex/style" ]; then \ |
70 | mkdir -p $(HOMEDIR)/.emacs.d/auctex/auto; \ | 70 | mkdir -p $(HOMEDIR)/.emacs.d/auctex/style; \ |
71 | fi | 71 | fi |
72 | cp $(NAME)*.{el,elc} $(HOMEDIR)/.emacs.d/auctex/auto | 72 | cp $(NAME)*.{el,elc} $(HOMEDIR)/.emacs.d/auctex/style |
73 | 73 | ||
74 | distclean: clean uninst | 74 | distclean: clean uninst |
75 | 75 | ||
76 | uninst: | 76 | uninst: |
77 | rm -rf $(UTREE)/{tex,source,doc}/lualatex/$(NAME) | 77 | rm -rf $(UTREE)/{tex,source,doc}/lualatex/$(NAME) |
78 | rm -rf $(HOMEDIR)/.emacs.d/auctex/auto/$(NAME).{el,elc} | 78 | rm -rf $(HOMEDIR)/.emacs.d/auctex/style/$(NAME).{el,elc} |
79 | 79 | ||
80 | inst: uninst auctex all | 80 | inst: uninst auctex all |
81 | @ echo "Installing $(NAME) locally" | 81 | @ echo "Installing $(NAME) locally" |