diff options
author | Thanos Apollo <[email protected]> | 2024-09-05 19:27:15 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-09-05 19:27:44 +0300 |
commit | 731f0ba4910c872efedf7e460d904f3d9c3be9a7 (patch) | |
tree | ea50df01d2ea9dee092572875696afa545d3b419 /Makefile | |
parent | bc626d511c111545387df12219a6412506eaf5a1 (diff) | |
parent | d034335bde30c7873768bfbbae531a704d011245 (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-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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) |