aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil/Makefile
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-30 20:09:00 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-30 20:18:37 -0400
commit8c4e09dff83847ac7f07bf1da7751e9328006c4d (patch)
treea0e245567ce225f8bcb63b66e4d2373b5d033e4a /.config/emacs/lisp/evil/Makefile
parent1e33b30749bb1043ffc6ceb5a2fb0977446788b3 (diff)
actual final changes and get rid of junk in lisp dir
actually works fine
Diffstat (limited to '.config/emacs/lisp/evil/Makefile')
-rw-r--r--.config/emacs/lisp/evil/Makefile80
1 files changed, 0 insertions, 80 deletions
diff --git a/.config/emacs/lisp/evil/Makefile b/.config/emacs/lisp/evil/Makefile
deleted file mode 100644
index 6dd8f25..0000000
--- a/.config/emacs/lisp/evil/Makefile
+++ /dev/null
@@ -1,80 +0,0 @@
-EMACS ?= emacs
-SED ?= sed
-FILES = $(filter-out evil-test-helpers.el evil-tests.el evil-pkg.el,$(wildcard evil*.el))
-VERSION := $(shell $(SED) -n '/^;\+ \+Version: *\(.*\)/{s//\1/p;q}' evil.el)
-PROFILER =
-TAG =
-EASK ?= eask
-
-ELCFILES = $(FILES:.el=.elc)
-
-.PHONY: all compile docstrings doc clean tests test emacs term terminal profiler indent elpa version
-
-# Byte-compile Evil.
-all: compile
-
-compile:
- $(EASK) compile
-
-# Documentation.
-docstrings:
- @$(EMACS) --script scripts/evil-extract-docstrings
-
-doc: docstrings
- @$(MAKE) -C doc texinfo
-
-info: doc
- @$(MAKE) -C doc info
-
-# Delete byte-compiled files etc.
-clean:
- $(EASK) clean all
-
-# Run tests.
-# The TAG variable may specify a test tag or a test name:
-# make test TAG=repeat
-# This will only run tests pertaining to the repeat system.
-test:
- $(EASK) run command test
-
-# Byte-compile Evil and run all tests.
-tests: compile
- $(EASK) run command test
- $(EASK) clean elc
- rm -f .depend
-
-# Load Evil in a fresh instance of Emacs and run all tests.
-emacs:
- $(EMACS) -Q -L . -l evil-tests.el \
- --eval "(evil-mode 1)" \
- --eval "(evil-tests-initialize '(${TAG}) '(${PROFILER}) t)"
-
-# Load Evil in a terminal Emacs and run all tests.
-term terminal:
- $(EASK) run command terminal
-
-# Run all tests with profiler.
-profiler:
- $(EASK) run command profiler
-
-# Re-indent all Evil code.
-# Loads Evil into memory in order to indent macros properly.
-# Also removes trailing whitespace, tabs and extraneous blank lines.
-indent: clean
- $(EASK) run command indent
-
-evil-pkg.el: evil.el
- $(EMACS) --batch -l package $^ \
- --eval "(package-generate-description-file (package-buffer-info) \"$@\")"
-
-# Create an ELPA package.
-elpa: evil-pkg.el
- $(EASK) package
-
-# Change the version using make VERSION=x.y.z
-version:
- @$(EMACS) --script scripts/evilupdate "${VERSION}"
-
-# Change the version using make VERSION=x.y.z, but do not post to the newsgroup
-nversion:
- @$(EMACS) --script scripts/evilupdate nonews "${VERSION}"