X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2FMakefile.in;h=0bac6c50768e72bf3ad027bd8d6c6fe5a41e48fc;hb=f78e15fc2b0729058570d706eced1a477b0b27cf;hp=9edc426de3de9d5473efcb7bcaf9a0527fc0f1b9;hpb=8db1ac1153f11fa39ca204976dc6061fcb3b6d7b;p=elisp%2Fgnus.git- diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 9edc426..0bac6c5 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -6,37 +6,88 @@ 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 = @PACKAGEDIR@ +W3DIR = @W3@ +URLDIR = @URL@ +EMACS_COMP = URLDIR=$(URLDIR) W3DIR=$(W3DIR) lispdir=$(lispdir) srcdir=$(srcdir) $(EMACS) $(FLAGS) +GNUS_PRODUCT_NAME = @GNUS_PRODUCT_NAME@ +EXPORTING_FILES = $(EMACS_COMP) -f dgnushack-exporting-files 2>/dev/null -all total: - rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile +# We should never use `COMMAND && ...' form, use `if COMMAND then ...' +# form instead. Because, as far as we know, FreeBSD's native make will +# be discontinued if COMMAND returns a non-zero exit status. -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" +all total: clean-some gnus-load.elc + $(EMACS_COMP) -f dgnushack-compile -clever some: - $(EMACS) $(FLAGS) -f dgnushack-compile +clean-some: + rm -f *.elc gnus-load.el -install: clever - rm -f dgnushack.elc +warn: clean-some gnus-load.elc + $(EMACS_COMP) --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" + +# The "clever" rule is unsafe, since redefined macros are loaded from +# .elc files, and not the .el file. +clever some: gnus-load.elc + @if test -f $(srcdir)/gnus.elc; then \ + echo \ + "checking whether the all elc files should be recompiled..."; \ + RM_ELC=nil; \ + if test `$(EMACS) -batch -q -no-site-file \ + -eval '(prin1 (featurep (quote xemacs)))' \ + 2>/dev/null` = t; then \ + if test ! -f $(srcdir)/gnus-xmas.elc; then RM_ELC=t; fi; \ + else \ + if test -f $(srcdir)/gnus-xmas.elc; then RM_ELC=t; fi; \ + 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 + $(EMACS_COMP) -f dgnushack-compile + +install: clever install-without-compiling + +install-without-compiling: $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir) - for p in *.elc; 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 -package: - $(EMACS) $(FLAGS) -f dgnushack-make-package +# Rule for XEmacs package. +install-package-manifest: + $(EMACS_COMP) -f dgnushack-install-package-manifest \ + $(PACKAGEDIR) $(GNUS_PRODUCT_NAME) -install-package: clever - rm -f dgnushack.elc - $(EMACS) $(FLAGS) -f dgnushack-make-package \ - -f dgnushack-install-package $(PACKAGEDIR) +compose-package: gnus-load.elc + $(EMACS_COMP) -f dgnushack-compose-package + +remove-extra-files-in-package: + $(EMACS_COMP) -f dgnushack-remove-extra-files-in-package \ + $(PACKAGEDIR) $(GNUS_PRODUCT_NAME) +# + +install-el: + $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir) + cd $(srcdir) \ + && for p in *.el; do \ + echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ + $(INSTALL_DATA) $$p $(lispdir)/$$p; \ + done tags: etags *.el @@ -47,20 +98,17 @@ separately: pot: xpot -drgnus -r`cat ./version` *.el > rgnus.pot -gnus-load.el: - echo ";;; gnus-load.el --- automatically extracted custom dependencies" > gnus-load.el - echo ";;" >> gnus-load.el - echo ";;; Code:" >> gnus-load.el - echo >> gnus-load.el - $(EMACS) $(FLAGS) -l ./dgnushack.el -l cus-edit.el *.el \ - -f custom-make-dependencies >> gnus-load.el - echo >> gnus-load.el - echo "(provide 'gnus-load)" >> gnus-load.el - echo >> gnus-load.el - echo ";;; gnus-load.el ends here" >> gnus-load.el - -distclean: - rm -f *.orig *.rej *.elc *~ Makefile +gnus-load.elc: + $(EMACS_COMP) -f dgnushack-make-cus-load $(srcdir) + $(EMACS_COMP) -f dgnushack-make-auto-load $(srcdir) + $(EMACS_COMP) -f dgnushack-make-load + +clean: + rm -f *.orig *.rej *.elc *~ \ + auto-autoloads.el custom-load.el gnus-load.el dgnuskwds.el + +distclean: clean + rm -f Makefile dgnuspath.el Makefile: $(srcdir)/Makefile.in ../config.status cd .. \