Import ptexinfmt.el from Wanderlust.
[elisp/gnus.git-] / lisp / Makefile.in
index d143e8f..845fec3 100644 (file)
@@ -6,34 +6,49 @@ subdir = lisp
 top_srcdir = @top_srcdir@
 
 EMACS = @EMACS@
-FLAGS = -batch -q -no-site-file -l ./dgnushack.el
+FLAGS = -batch -q -no-site-file -l $(srcdir)/dgnushack.el
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 SHELL = /bin/sh
 VPATH = @srcdir@
+PACKAGEDIR = @PACKAGEDIR@
+W3DIR = @W3@
 
-total:
-       rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
-
-all:
-       rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile
+all total:
+       rm -f *.elc auto-autoloads.el custom-load.el
+       W3DIR=$(W3DIR) lispdir=$(lispdir) \
+               srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
 
 warn:
-       rm -f *.elc ; $(EMACS) $(FLAGS) --eval '(dgnushack-compile t)' 2>&1 | egrep -v "variable G|inhibit-point-motion-hooks|coding-system|temp-results|variable gnus|variable nn|scroll-in-place|deactivate-mark|filladapt-mode|byte-code-function-p|print-quoted|ps-right-header|ps-left-header|article-inhibit|print-escape|ssl-program-arguments|message-log-max"
-
-clever:
-       $(EMACS) $(FLAGS) -f dgnushack-compile
+       rm -f *.elc
+       W3DIR=$(W3DIR) lispdir=$(lispdir) srcdir=$(srcdir) $(EMACS) $(FLAGS) --eval '(dgnushack-compile t)' 2>&1 | egrep -v "variable G|inhibit-point-motion-hooks|coding-system|temp-results|variable gnus|variable nn|scroll-in-place|deactivate-mark|filladapt-mode|byte-code-function-p|print-quoted|ps-right-header|ps-left-header|article-inhibit|print-escape|ssl-program-arguments|message-log-max"
 
-some:
-       $(EMACS) $(FLAGS) -f dgnushack-compile
+# The "clever" rule is unsafe, since redefined macros are loaded from
+# .elc files, and not the .el file.
+clever some:
+       W3DIR=$(W3DIR) lispdir=$(lispdir) \
+               srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
 
 install: clever
        $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
-       for p in *.elc; do \
-         echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
-         $(INSTALL_DATA) $$p $(lispdir)/$$p; \
+       @for p in *.el; do \
+         if test "$$p" != "dgnuspath.el" -a "$$p" != "ptexinfmt.el"; then \
+           echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
+           $(INSTALL_DATA) $$p $(lispdir)/$$p; \
+           if test -f $$p"c"; then \
+             echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \
+             $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \
+           fi; \
+         fi; \
        done
 
+package:
+       srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-make-package
+
+install-package: clever
+       srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-make-package \
+               -f dgnushack-install-package $(PACKAGEDIR)
+
 tags:
        etags *.el
 
@@ -55,8 +70,12 @@ gnus-load.el:
        echo >> gnus-load.el
        echo ";;; gnus-load.el ends here" >> gnus-load.el
 
-distclean:
-       rm -f *.orig *.rej *.elc *~ Makefile
+clean:
+       rm -f *.orig *.rej *.elc *~
+       rm -f auto-autoloads.el custom-load.el
+
+distclean: clean
+       rm -f Makefile dgnuspath.el
 
 Makefile: $(srcdir)/Makefile.in ../config.status
        cd .. \