# Generated automatically from Makefile.in by configure. # Makefile.in # # Makefile for the GNU Emacs lisp library, PSGML prefix = /usr/local datadir = ${prefix}/share lispdir = /usr/local/share/emacs/22.1/site-lisp/psgml infodir = ${prefix}/info srcdir = . EMACS = /usr/local/bin/emacs-22.1 XEMACS = xemacs FLAGS = -batch -q -no-site-file -l ./psgml-maint.el INSTALL = /usr/bin/install -c -o root -g wheel INSTALL_DATA = install -o root -g wheel -m 444 SHELL = /bin/sh compile: for F in psgml.el psgml.texi; do \ sed -e "s,@[p]refix@,${prefix}," < $$F > $$F.tmp; \ mv $$F.tmp $$F; \ done $(EMACS) $(FLAGS) -f psgml-compile-files info: for p in psgml psgml-api; do \ $(EMACS) -batch -q -no-site-file -l texinfmt \ -f batch-texinfo-format $$p.texi; \ done all: rm -f *.elc ${MAKE} compile ${MAKE} info install: $(SHELL) mkinstalldirs $(lispdir) for p in *.elc; do \ echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ $(INSTALL_DATA) $$p $(lispdir)/$$p; \ $(INSTALL_DATA) `echo $$p | sed 's/elc$$/el/'` $(lispdir)/`echo $$p | sed 's/elc$$/el/'` ; \ done $(INSTALL_DATA) iso88591.map $(lispdir) install-info: $(INSTALL_DATA) psgml.info $(infodir) $(INSTALL_DATA) psgml-api.info $(infodir) if $(SHELL) -c 'install-info --version' \ >/dev/null 2>&1; then \ install-info $(infodir)/psgml.info $(infodir)/dir; \ install-info $(infodir)/psgml-api.info $(infodir)/dir; \ else true; fi xemacs: $(MAKE) EMACS=xemacs all install-xemacs: $(MAKE) EMACS=xemacs install # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: # Makefile.in ends here