diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-08 14:56:23 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-08 14:56:23 -0500 |
commit | 1a5de666921e000b24ed02ffae5a03cc5caddc45 (patch) | |
tree | 6cb89634eb2d5218a04af71c47b50bda7460692f /lisp/bbdb/GNUmakefile | |
parent | 17bbf85f47e0b02c250e112beb234653a7be57ab (diff) | |
download | configs-1a5de666921e000b24ed02ffae5a03cc5caddc45.tar.gz configs-1a5de666921e000b24ed02ffae5a03cc5caddc45.tar.xz configs-1a5de666921e000b24ed02ffae5a03cc5caddc45.zip |
[emacs] manually add bbdb into lisp/bbdb/
Diffstat (limited to 'lisp/bbdb/GNUmakefile')
-rw-r--r-- | lisp/bbdb/GNUmakefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lisp/bbdb/GNUmakefile b/lisp/bbdb/GNUmakefile new file mode 100644 index 0000000..2b51ee4 --- /dev/null +++ b/lisp/bbdb/GNUmakefile @@ -0,0 +1,27 @@ +# Rules to generate the files that need to go into the ELPA package. + +# Copied and adapted from AUCTeX's GNUmakefile. + +MAKEINFO=makeinfo +INSTALL_INFO=install-info + +MANUALS=bbdb +INFO_FILES=$(MANUALS:=.info) + +# FIXME: Currently these files need to be stored in the elpa.git repository +# because the elpa.gnu.org scripts don't know how to build the Info file +# from the Texinfo file. +GENERATED_FILES=dir $(INFO_FILES) + +elpa: $(GENERATED_FILES) + +clean: + rm -f $(GENERATED_FILES) + +TEXI_SOURCES:=$(wildcard doc/*.texi) +$(INFO_FILES): %.info: $(TEXI_SOURCES) + cd doc; $(MAKEINFO) --no-split $*.texi + mv doc/$*.info $@ + +dir: $(INFO_FILES) + for f in $(INFO_FILES); do $(INSTALL_INFO) --info-dir=. $$f; done |