initial commit

This commit is contained in:
2026-02-18 10:26:44 +01:00
commit a8bccc3dea
8 changed files with 1597 additions and 0 deletions

24
Makefile Normal file
View File

@@ -0,0 +1,24 @@
EMACS ?= emacs
SRCS = org-roam-project.el
ELCS = $(SRCS:.el=.elc)
.PHONY: all compile test clean
all: compile test
compile: $(ELCS)
%.elc: %.el
$(EMACS) --batch -l org-roam -f batch-byte-compile $<
test:
$(EMACS) --batch \
-l ert \
-l org-roam \
--eval "(add-to-list 'load-path (file-name-directory (expand-file-name \"org-roam-project.el\")))" \
-l org-roam-project \
-l org-roam-project-test \
-f ert-run-tests-batch-and-exit
clean:
rm -f $(ELCS)