emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/orgit 692256bac9 33/76: Add Makefile


From: ELPA Syncer
Subject: [nongnu] elpa/orgit 692256bac9 33/76: Add Makefile
Date: Thu, 13 Jan 2022 13:58:45 -0500 (EST)

branch: elpa/orgit
commit 692256bac9c6171a5a1dcfe9faf46202ad71afce
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Add Makefile
---
 .gitignore |  3 +++
 Makefile   | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000..63f7a0f847
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/*.elc
+/*-autoloads.el
+/.config.mk
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000..c5f5d85edd
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,69 @@
+-include .config.mk
+
+PKG = orgit
+
+ELS   = $(PKG).el
+ELCS  = $(ELS:.el=.elc)
+
+DEPS  = dash
+DEPS += ghub
+DEPS += org/lisp
+DEPS += magit-popup
+DEPS += magit/lisp
+DEPS += with-editor
+
+EMACS      ?= emacs
+EMACS_ARGS ?=
+
+LOAD_PATH  ?= $(addprefix -L ../,$(DEPS))
+LOAD_PATH  += -L .
+
+all: lisp
+
+help:
+       $(info make all          - generate byte-code and autoloads)
+       $(info make lisp         - generate byte-code and autoloads)
+       $(info make clean        - remove generated files)
+       @printf "\n"
+
+lisp: $(ELCS) loaddefs
+
+loaddefs: $(PKG)-autoloads.el
+
+%.elc: %.el
+       @printf "Compiling $<\n"
+       @$(EMACS) -Q --batch $(EMACS_ARGS) $(LOAD_PATH) -f batch-byte-compile $<
+
+CLEAN  = $(ELCS) $(PKG)-autoloads.el
+
+clean:
+       @printf "Cleaning...\n"
+       @rm -rf $(CLEAN)
+
+define LOADDEFS_TMPL
+;;; $(PKG)-autoloads.el --- automatically extracted autoloads
+;;
+;;; Code:
+(add-to-list 'load-path (directory-file-name \
+(or (file-name-directory #$$) (car load-path))))
+
+;; Local Variables:
+;; version-control: never
+;; no-byte-compile: t
+;; no-update-autoloads: t
+;; End:
+;;; $(PKG)-autoloads.el ends here
+endef
+export LOADDEFS_TMPL
+#'
+
+$(PKG)-autoloads.el: $(ELS)
+       @printf "Generating $@\n"
+       @printf "%s" "$$LOADDEFS_TMPL" > $@
+       @$(EMACS) -Q --batch --eval "(progn\
+       (setq make-backup-files nil)\
+       (setq vc-handled-backends nil)\
+       (setq default-directory (file-truename default-directory))\
+       (setq generated-autoload-file (expand-file-name \"$@\"))\
+       (setq find-file-visit-truename t)\
+       (update-directory-autoloads default-directory))"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]