emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to lisp/nxml/Makefile


From: Mark A. Hershberger
Subject: [Emacs-diffs] Changes to lisp/nxml/Makefile
Date: Fri, 23 Nov 2007 06:58:15 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Mark A. Hershberger <hexmode>   07/11/23 06:58:00

Index: lisp/nxml/Makefile
===================================================================
RCS file: lisp/nxml/Makefile
diff -N lisp/nxml/Makefile
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ lisp/nxml/Makefile  23 Nov 2007 06:57:49 -0000      1.1
@@ -0,0 +1,80 @@
+EXTRA=README NEWS VERSION TODO COPYING Makefile rng-auto.el \
+  nxml-mode.xml nxml-mode.rnc nxml-mode.texi nxml-mode.info dir \
+  test.valid.xml test.invalid.xml 
+
+SRC=nxml-rap.el nxml-outln.el nxml-mode.el nxml-parse.el nxml-enc.el \
+  nxml-uchnm.el nxml-glyph.el nxml-maint.el nxml-util.el nxml-ns.el \
+  rng-dt.el rng-valid.el rng-pttrn.el rng-xsd.el rng-cmpct.el \
+  rng-match.el rng-nxml.el rng-util.el rng-loc.el rng-uri.el \
+  rng-parse.el rng-maint.el xsd-regexp.el xmltok.el
+
+ELC=nxml-rap.elc nxml-outln.elc nxml-mode.elc nxml-parse.elc nxml-enc.elc \
+  nxml-uchnm.elc nxml-glyph.elc nxml-maint.elc nxml-util.elc nxml-ns.elc \
+  rng-dt.elc rng-valid.elc rng-pttrn.elc rng-xsd.elc rng-cmpct.elc \
+  rng-match.elc rng-nxml.elc rng-util.elc rng-loc.elc rng-uri.elc \
+  rng-parse.elc rng-maint.elc xsd-regexp.elc xmltok.elc
+
+FILESTOCLEAN=stamp-byte-compile $(ELC) VERSION TAGS \
+  nxml-mode.texi nxml-mode.info dir
+
+EMACS=emacs
+ETAGS=etags
+MAKEINFO=makeinfo
+INSTALL-INFO=install-info
+PACKAGE=nxml-mode
+
+stamp-byte-compile: $(SRC)
+       -rm -f $(ELC)
+       $(EMACS) -batch -l rng-auto.el -f rng-byte-compile-load
+       touch $(@)
+
+all: stamp-byte-compile nxml-mode.info
+
+dir: nxml-mode.info
+       rm -f $@
+       $(INSTALL-INFO) $< $@
+
+info: nxml-mode.info
+
+nxml-mode.info: nxml-mode.texi
+       $(MAKEINFO) $<
+
+nxml-mode.texi: nxml-mode.xml
+       $(EMACS) -batch -l rng-auto.el -f rng-format-manual
+
+VERSION: stamp-byte-compile rng-auto.el
+       $(EMACS) -batch -l rng-auto.el -f rng-write-version
+
+TAGS: $(SRC)
+       $(ETAGS) $(SRC)
+
+dist: stamp-byte-compile $(EXTRA)
+       @version=`cat VERSION`; \
+       set -e; \
+       echo Making $(PACKAGE)-$$version.tar.gz; \
+       rm -fr $(PACKAGE)-$$version; \
+       mkdir $(PACKAGE)-$$version; \
+       cd $(PACKAGE)-$$version; \
+       for f in $(EXTRA) $(SRC) $(ELC); do \
+         ln -s ../$$f .; \
+       done; \
+       mkdir schema; \
+       cd schema; \
+       for f in ../../schema/*.rnc ../../schema/*.xml; do \
+         ln -s $$f .; \
+       done; \
+       cd ..; \
+       mkdir char-name; \
+       mkdir char-name/unicode; \
+       cd char-name/unicode; \
+       for f in ../../../char-name/unicode/*-*.el; do \
+         ln -s $$f .; \
+       done; \
+       cd ../../..; \
+       tar cfhz $(PACKAGE)-$$version.tar.gz $(PACKAGE)-$$version; \
+       rm -fr $(PACKAGE)-$$version
+
+clean:
+       -rm -f $(FILESTOCLEAN)
+
+.PHONY: all clean info




reply via email to

[Prev in Thread] Current Thread [Next in Thread]