Feeding back from `t-gnus-6_14' into `pgnus-ichikawa'.
[elisp/gnus.git-] / lisp / Makefile.in
index dde4019..6ea8e34 100644 (file)
@@ -11,11 +11,15 @@ INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 SHELL = /bin/sh
 VPATH = @srcdir@
+PACKAGEDIR = @PACKAGEDIR@
 W3DIR = @W3@
+GNUS_PRODUCT_NAME = @GNUS_PRODUCT_NAME@
+EXPORTING_FILES = $(EMACS) $(FLAGS) -f dgnushack-exporting-files 2>/dev/null
 
 all total:
-       rm -f *.elc
-       W3DIR=$(W3DIR) lispdir=$(lispdir) srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
+       rm -f *.elc auto-autoloads.el custom-load.el
+       W3DIR=$(W3DIR) lispdir=$(lispdir) \
+               srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
 
 warn:
        rm -f *.elc
@@ -24,23 +28,56 @@ warn:
 # 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
+       @if test -f $(srcdir)/gnus.elc; then \
+         echo \
+           "checking for whether the all elc files should be recompiled..."; \
+         RM_ELC=nil; \
+         if test `$(EMACS) -batch -q -no-site-file \
+               -eval "(princ (format \"%s\" (featurep (quote xemacs))))" \
+               2>/dev/null` = t; then \
+           test ! -f $(srcdir)/gnus-xmas.elc && RM_ELC=t; \
+         else \
+           test -f $(srcdir)/gnus-xmas.elc && RM_ELC=t; \
+         fi; \
+         if test $$RM_ELC = t; then \
+           echo " => maybe yes;" \
+               "rm -f *.elc auto-autoloads.el custom-load.el"; \
+           rm -f *.elc auto-autoloads.el custom-load.el; \
+         else \
+           echo " => maybe unnecessary"; \
+         fi; \
+       fi
+       W3DIR=$(W3DIR) lispdir=$(lispdir) \
+               srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-compile
 
-install: clever
-       rm -f dgnushack.elc
-       $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
-       for p in *.elc; do \
-         echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \
-         $(INSTALL_DATA) $$p $(lispdir)/$$p; \
-       done
+install: clever install-without-compiling
 
-install-el:
+install-without-compiling:
        $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir)
-       for p in *.el; do \
+       @for p in `$(EXPORTING_FILES)`; do \
          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; \
        done
 
+# Rule for XEmacs package.
+install-package-manifest:
+       srcdir=$(srcdir) $(EMACS) $(FLAGS) \
+               -f dgnushack-install-package-manifest \
+               $(PACKAGEDIR) $(GNUS_PRODUCT_NAME)
+
+compose-package:
+       srcdir=$(srcdir) $(EMACS) $(FLAGS) -f dgnushack-make-autoloads
+
+remove-extra-files-in-package:
+       srcdir=$(srcdir) $(EMACS) $(FLAGS) \
+               -f dgnushack-remove-extra-files-in-package \
+               $(PACKAGEDIR) $(GNUS_PRODUCT_NAME)
+#
+
 tags:
        etags *.el
 
@@ -62,8 +99,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 .. \