blob: 82bee0629924969a9539bd5b9df7cda3106eb80e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
PKG = transient
ELS = $(PKG).el
ELCS = $(ELS:.el=.elc)
DEPS = dash
DEPS += hydra # for lv.el
EMACS ?= emacs
EMACS_ARGS ?=
LOAD_PATH ?= $(addprefix -L ../../,$(DEPS))
LOAD_PATH += -L .
ifndef ORG_LOAD_PATH
ORG_LOAD_PATH = -L ../../dash
ORG_LOAD_PATH += -L ../../org/lisp
ORG_LOAD_PATH += -L ../../org/contrib/lisp
ORG_LOAD_PATH += -L ../../ox-texinfo+
endif
INSTALL_INFO ?= $(shell command -v ginstall-info || printf install-info)
MAKEINFO ?= makeinfo
MANUAL_HTML_ARGS ?= --css-ref /assets/page.css
|