summaryrefslogtreecommitdiffstats
path: root/lisp/bbdb/GNUmakefile
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-12-23 00:20:54 -0500
committerAmin Bandali <bandali@gnu.org>2018-12-23 00:20:54 -0500
commit59937519c5cf62fa7a6b83ff4a5f8f236449ae68 (patch)
tree0f2292d5d1d849d6e199f258383e6e35eb67593c /lisp/bbdb/GNUmakefile
parent66075b3deb7af9ce375f4655571eaea5d7bdae35 (diff)
downloadconfigs-59937519c5cf62fa7a6b83ff4a5f8f236449ae68.tar.gz
configs-59937519c5cf62fa7a6b83ff4a5f8f236449ae68.tar.xz
configs-59937519c5cf62fa7a6b83ff4a5f8f236449ae68.zip
[emacs] remove bbdb — using ebdb now
Diffstat (limited to '')
-rw-r--r--lisp/bbdb/GNUmakefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/lisp/bbdb/GNUmakefile b/lisp/bbdb/GNUmakefile
deleted file mode 100644
index 2b51ee4..0000000
--- a/lisp/bbdb/GNUmakefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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