summaryrefslogtreecommitdiff
path: root/bits/bbdb-filters/makefile
diff options
context:
space:
mode:
authorBarak A. Pearlmutter <bap@debian.org>2010-04-20 15:18:13 -0400
committerBarak A. Pearlmutter <bap@debian.org>2010-04-20 15:18:13 -0400
commit0960d4900c9bc749cd72e3d928e8cfbe081712ea (patch)
treea9e6d9f90ba35dd7f1fdb68a96f08808380bfbbe /bits/bbdb-filters/makefile
Import bbdb_2.36.orig.tar.gz
[dgit import orig bbdb_2.36.orig.tar.gz]
Diffstat (limited to 'bits/bbdb-filters/makefile')
-rw-r--r--bits/bbdb-filters/makefile67
1 files changed, 67 insertions, 0 deletions
diff --git a/bits/bbdb-filters/makefile b/bits/bbdb-filters/makefile
new file mode 100644
index 0000000..9959f0e
--- /dev/null
+++ b/bits/bbdb-filters/makefile
@@ -0,0 +1,67 @@
+# This file is part of the BBDB Filters Package. BBDB Filters Package is a
+# collection of input and output filters for BBDB.
+#
+# Copyright (C) 1995 Neda Communications, Inc.
+# Prepared by Mohsen Banan (mohsen@neda.com)
+#
+# This library is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Library General Public License as
+# published by the Free Software Foundation; either version 2 of the
+# License, or (at your option) any later version. This library is
+# distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
+# License for more details. You should have received a copy of the GNU
+# Library General Public License along with this library; if not, write
+# to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
+# USA.
+#
+#
+
+# Makefile for the Insidious Big Brother Database -- Input and Output Filters
+#
+# RCS makefile,v 1.2 1995/08/08 01:20:32 mohsen Exp
+#
+
+EOEBASE = /usr/public/eoe/lisp/public/bbdbPlus
+EOEINFO = /usr/public/eoe/info
+EMACS = xemacs
+
+
+# You shouldn't need to change anything after this point.
+
+SRCS = bbdb-ccmail.el bbdb-eudora.el bbdb-export.el bbdb-hp200lx.el bbdb-ph.el bbdb-passwd.el
+
+SHELL=/bin/sh
+
+.SUFFIXES:
+.SUFFIXES: .elc .el
+
+.el.elc:
+ $(EMACS) -batch -q -f batch-byte-compile $(@:.elc=.el)
+
+default:
+ @echo Targets: install clean shar
+
+install:
+ cp $(SRCS) $(EOEBASE)
+ cd doc; make EOEBASE=$(EOEBASE) EOEINFO=$(EOEINFO) install
+
+clean:
+ -/bin/rm *.elc package.shar
+ cd doc; make EOEBASE=$(EOEBASE) EOEINFO=$(EOEINFO) clean
+
+
+shar: $(SRCS) makefile
+ shar -o package.shar $(SRCS) makefile COPYING.LIB README \
+ doc doc/main.texinfo doc/lgpl.tex doc/makefile \
+ doc/formatted doc/formatted/bbdb-filters.info
+
+
+FORFTPING = /h8/var/ftp/pub/eoe/bbdbPlus/bbdb-filters-0.2.tar
+
+tar: $(SRCS) makefile
+ tar cvf $(FORFTPING) .
+
+
+