diff options
| author | Justin Burkett <justin@burkett.cc> | 2018-07-12 15:05:50 -0400 |
|---|---|---|
| committer | James N <james@jojojames.com> | 2019-10-09 19:41:45 -0700 |
| commit | 95dad4c734ae3d3811c05b259eea15ac4f3cb5c5 (patch) | |
| tree | d2e8bad926a11d2665ce3c86ca986e0f1447a23c /Makefile | |
| parent | 34d515e99e911f368b335bbccc026b71b42a9821 (diff) | |
Use subdirectories for setup files (+READMEs)
Move setup files into subdirectories. Move mode directories to modes subdir.
This will make it easy to specify a recipe in melpa that maintains the directory
structure. Add interactive functions to jump to .el and README files
See #170
Diffstat (limited to 'Makefile')
| -rwxr-xr-x | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,8 +3,9 @@ EMACS ?= emacs compile: cask exec $(EMACS) -Q -batch \ -L . \ + --eval '(setq evil-want-integration nil)' \ --eval '(setq byte-compile-error-on-warn t)' \ - -f batch-byte-compile *.el + -f batch-byte-compile *.el modes/*/*.el lint: cask exec $(EMACS) -Q -batch \ @@ -14,7 +15,7 @@ lint: --eval "(package-refresh-contents)" \ -l package-lint.el \ --eval "(advice-add 'package-lint--check-eval-after-load :around 'ignore)" \ - -f package-lint-batch-and-exit *.el + -f package-lint-batch-and-exit *.el modes/*/*.el test: cask exec ert-runner |
