# Makefile.in # # Makefile for the GNU Emacs lisp library, PSGML prefix = @prefix@ datadir = @datadir@ lispdir = @lispdir@ infodir = @infodir@ srcdir = @srcdir@ @SET_MAKE@ EMACS = @EMACS@ XEMACS = xemacs VPATH = @srcdir@ FLAGS = -batch -q -no-site-file -l ./psgml-maint.el INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ SHELL = /bin/sh compile: $(EMACS) $(FLAGS) -f psgml-compile-files all: rm -f *.elc ; $(EMACS) $(FLAGS) -f psgml-compile-files install: compile $(SHELL) mkinstalldirs $(lispdir) for p in *.elc; do \ echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ $(INSTALL_DATA) $$p $(lispdir)/$$p; \ 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 --info-dir=$(infodir) psgml.info; \ install-info --info-dir=$(infodir) psgml-api.info; \ 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