summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-09-05 19:27:15 +0300
committerThanos Apollo <[email protected]>2024-09-05 19:27:44 +0300
commit731f0ba4910c872efedf7e460d904f3d9c3be9a7 (patch)
treeea50df01d2ea9dee092572875696afa545d3b419 /Makefile
parentbc626d511c111545387df12219a6412506eaf5a1 (diff)
parentd034335bde30c7873768bfbbae531a704d011245 (diff)
Release version 0.4.2.0.4.2
* Comment out gnosis-org sections that are under development. * gnosis-org should be ready by next version. * Fix display issues on non-grapical interface. * Add variable watchers for custom algorithm values. * Update assertions for editing notes This is a minor release with a few bug fixes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4ee28ad..9b1a262 100644
--- a/Makefile
+++ b/Makefile
@@ -6,15 +6,21 @@ EMACS = emacs
ORG := doc/gnosis.org
TEXI := doc/gnosis.texi
INFO := doc/gnosis.info
-
+TEST_FILE := gnosis-test.el
all: doc
doc: $(ORG)
$(EMACS) --batch \
+ -Q \
--load org \
--eval "(with-current-buffer (find-file \"$(ORG)\") (org-texinfo-export-to-texinfo) (org-texinfo-export-to-info) (save-buffer))" \
--kill
+test:
+ $(EMACS) --batch \
+ --load $(TEST_FILE) \
+ --eval "(ert-run-tests-batch-and-exit)"
+
clean:
rm -f $(TEXI) $(INFO)