Modified makefile to adapt to structure changes

This commit is contained in:
2025-12-29 21:22:08 +00:00
parent 7ae5ba7684
commit d98baea05c
2 changed files with 3 additions and 3 deletions

View File

@@ -3,12 +3,12 @@
# Default target: full build with search index
all:
@echo "Building project (full rebuild with search index)..."
emacs -Q --script build.el
emacs -Q --script lisp/build.el
# Fast build without search index
fast:
@echo "Building project (fast rebuild without search index)..."
emacs -Q --script build.el --fast
emacs -Q --script lisp/build.el --fast
# Clean output directory
clean:

View File

@@ -223,7 +223,7 @@ Created with %c on <a href=\"https://www.archlinux.org/\">Arch</a> <a href=\"htt
org-html-inline-images t ;; self-expl
org-export-with-sub-superscripts t ;; render h_x as large h with subscript x
)
(load-file (expand-file-name "macros.el" default-directory))
(load-file (expand-file-name "lisp/macros.el" default-directory))
;; Configure LaTeX image generation
(setq org-latex-create-formula-image-program 'imagemagick)