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 58 59 60 61 62 63 64
|
## Process this file with automake to produce Makefile.in -*-Makefile-*-
AUTOMAKE_OPTIONS = foreign 1.2h
ELS = gnuplot-gui.el gnuplot.el info-look.20.2.el info-look.20.3.el
ELCS = gnuplot.elc gnuplot-gui.elc @INFO_LOOK_ELC@
EXTRA_DIST = README.1st dot.el dotemacs gnuplot.el.old gpelcard.dvi gpelcard.pdf gpelcard.ps gpelcard.tex $(ELS)
CLEANFILES = $(ELCS) gpelcard.pdf gpelcard.ps gpelcard.dvi gpelcard.log gpelcard.aux
DISTCLEANFILES = info-look.el
BYTEC = $(EMACS) -batch -q -no-site-file -l $(srcdir)/dot.el -f batch-byte-compile
.el.elc:
$(BYTEC) $<
.dvi.ps:
$(DVIPS) -o $@ $<
.tex.dvi:
$(LATEX) $<
.tex.pdf:
$(PDFLATEX) $<
all: @LISPFILES@
elcs: $(ELCS)
noelcs:
pdf: gpelcard.pdf
ps: gpelcard.ps
install-data-hook: @INSTALL_LISP@
install-lisp: install-els install-elcs
install-nolisp:
install-els: $(ELS)
$(mkinstalldirs) $(DESTDIR)$(lispdir)
@for p in $(ELS) ; do \
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(lispdir)/$$p"; \
$(INSTALL_DATA) $$p $(DESTDIR)$(lispdir)/$$p; \
done
install-elcs: $(ELCS)
$(mkinstalldirs) $(DESTDIR)$(lispdir)
@for p in $(ELCS) ; do \
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(lispdir)/$$p"; \
$(INSTALL_DATA) $$p $(DESTDIR)$(lispdir)/$$p; \
done
uninstall-local:
@$(NORMAL_UNINSTALL)
@for p in $(ELCS) $(ELS) ; do \
rm -f $(DESTDIR)$(lispdir)/$$p; \
done
distclean-local:
@if test "$(top_srcdir)" != "$(top_builddir)" ; then \
rm -f gnuplot.el gnuplot-gui.el gpelcard.tex ; \
fi
SUFFIXES = .el .elc .pdf .ps .tex
|