forked from magit/forge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.mk
57 lines (48 loc) · 1.21 KB
/
default.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
TOP := $(dir $(lastword $(MAKEFILE_LIST)))
PKG = forge
ELS += $(PKG)-db.el
ELS += $(PKG)-core.el
ELS += $(PKG).el
ELS += $(PKG)-repo.el
ELS += $(PKG)-post.el
ELS += $(PKG)-topic.el
ELS += $(PKG)-issue.el
ELS += $(PKG)-pullreq.el
ELS += $(PKG)-notify.el
ELS += $(PKG)-revnote.el
ELS += $(PKG)-github.el
ELS += $(PKG)-gitlab.el
ELS += $(PKG)-gitea.el
ELS += $(PKG)-gogs.el
ELS += $(PKG)-bitbucket.el
ELS += $(PKG)-semi.el
ELS += $(PKG)-commands.el
ELS += $(PKG)-list.el
ELCS = $(ELS:.el=.elc)
DEPS = closql
DEPS += dash
DEPS += emacsql
DEPS += ghub
DEPS += magit/lisp
DEPS += markdown-mode
DEPS += transient/lisp
DEPS += treepy
DEPS += with-editor
DEPS += yaml
# Optional
DEPS += emacsql-libsqlite3
DEPS += sqlite3
VERSION ?= $(shell test -e $(TOP).git && git describe --tags --abbrev=0 | cut -c2-)
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 ../../ox-texinfo+
endif
INSTALL_INFO ?= $(shell command -v ginstall-info || printf install-info)
MAKEINFO ?= makeinfo
MANUAL_HTML_ARGS ?= --css-ref /assets/page.css
STATS_DIR ?= $(TOP)docs/stats