X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=blobdiff_plain;f=lisp%2FMakefile.in;h=4dfe2f077295c269deaf99dc0ff07be64b10d97c;hp=93dd3d56bb5de57a10061b89d667777357c178ef;hb=4fe932c9ab0714252bb9a6de65b139026c41b3ac;hpb=5405adaf6003c22f30b1f7e53268ccb916191568 diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 93dd3d56b..4dfe2f077 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -1,34 +1,107 @@ +prefix = @prefix@ +datarootdir = @datarootdir@ datadir = @datadir@ lispdir = @lispdir@ -prefix = @prefix@ srcdir = @srcdir@ subdir = lisp top_srcdir = @top_srcdir@ EMACS = @EMACS@ -FLAGS = -batch -q -no-site-file -l ./dgnushack.el +FLAGS = @FLAGS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ SHELL = /bin/sh VPATH = @srcdir@ +EMACS_COMP = lispdir="$(lispdir)" srcdir=$(srcdir) $(EMACS) $(FLAGS) +GZIP_PROG = @GZIP_PROG@ +COMPRESS_INSTALL = @COMPRESS_INSTALL@ + +all total: clean-some + $(MAKE) gnus-load.el + $(EMACS_COMP) -f dgnushack-compile -all total: - rm -f *.elc ; $(EMACS) $(FLAGS) -f dgnushack-compile +clean-some: + rm -f *.elc gnus-load.el auto-autoloads.* custom-load.* -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" +warn: clean-some + $(MAKE) gnus-load.el + $(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" + +fail-on-warning: clean-some + $(MAKE) gnus-load.el + $(EMACS_COMP) -f dgnushack-compile-error-on-warn # The "clever" rule is unsafe, since redefined macros are loaded from # .elc files, and not the .el file. -clever some: - $(EMACS) $(FLAGS) -f dgnushack-compile +clever some l: gnus-load.el + $(EMACS_COMP) -f dgnushack-compile + +install: install-el-elc list-installed-shadows + +# Test rules +check: test-registry test-nntp + +test-registry: + $(EMACS) $(FLAGS) -l ert -l gnus-registry.el -f ert-run-tests-batch-and-exit + +test-nntp: + $(EMACS) $(FLAGS) -l ert -l tests/gnustest-nntp.el -f ert-run-tests-batch-and-exit + +# This entry will never install .el files if there are no .elc files. +install-el: gnus-load.el + $(SHELL) $(top_srcdir)/mkinstalldirs "$(DESTDIR)$(lispdir)" + $(INSTALL_DATA) gnus-load.el "$(DESTDIR)$(lispdir)/gnus-load.el" + @for p in *.elc; do \ + p=`basename $$p c`; \ + if [ -f "$(srcdir)/$$p" ]; then \ + echo "$(INSTALL_DATA) $$p \"$(DESTDIR)$(lispdir)/$$p\""; \ + $(INSTALL_DATA) $(srcdir)/$$p "$(DESTDIR)$(lispdir)/$$p"; \ + if test $(COMPRESS_INSTALL) = yes -a -n "$(GZIP_PROG)"; then \ + rm -f "$(DESTDIR)$(lispdir)/$$p.gz"; \ + $(GZIP_PROG) -9n "$(DESTDIR)$(lispdir)/$$p"; \ + fi; \ + fi; \ + done -install: clever +install-elc: clever rm -f dgnushack.elc - $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir) + $(SHELL) $(top_srcdir)/mkinstalldirs "$(DESTDIR)$(lispdir)" + @for p in *.elc; do \ + echo "$(INSTALL_DATA) $$p \"$(DESTDIR)$(lispdir)/$$p\""; \ + $(INSTALL_DATA) $$p "$(DESTDIR)$(lispdir)/$$p"; \ + done + +install-el-elc: clever + rm -f dgnushack.elc + $(SHELL) $(top_srcdir)/mkinstalldirs "$(DESTDIR)$(lispdir)" + $(INSTALL_DATA) gnus-load.el "$(DESTDIR)$(lispdir)/gnus-load.el" + @for p in *.elc; do \ + q=`basename $$p c`; \ + if [ -f "$(srcdir)/$$q" ]; then \ + echo "$(INSTALL_DATA) $$q \"$(DESTDIR)$(lispdir)/$$q\""; \ + $(INSTALL_DATA) $(srcdir)/$$q "$(DESTDIR)$(lispdir)/$$q"; \ + if test $(COMPRESS_INSTALL) = yes -a -n "$(GZIP_PROG)"; then \ + rm -f "$(DESTDIR)$(lispdir)/$$q.gz"; \ + $(GZIP_PROG) -9n "$(DESTDIR)$(lispdir)/$$q"; \ + fi; \ + fi; \ + echo "$(INSTALL_DATA) $$p \"$(DESTDIR)$(lispdir)/$$p\""; \ + $(INSTALL_DATA) $$p "$(DESTDIR)$(lispdir)/$$p"; \ + done + +list-installed-shadows: + $(EMACS_COMP) -f dgnushack-find-lisp-shadows + +remove-installed-shadows: + $(EMACS_COMP) -f dgnushack-remove-lisp-shadows + +uninstall: for p in *.elc; do \ - echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ - $(INSTALL_DATA) $$p $(lispdir)/$$p; \ + rm -f "$(DESTDIR)$(lispdir)/$$p"; \ + done + cd $(srcdir); \ + for p in *.el; do \ + rm -f "$(DESTDIR)$(lispdir)/$$p" "$(DESTDIR)$(lispdir)/$$p.gz"; \ done tags: @@ -41,19 +114,15 @@ 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 + $(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 *.elc *.orig *.rej *~ auto-autoloads.* custom-load.* gnus-load.el + +distclean: clean + rm -f Makefile Makefile: $(srcdir)/Makefile.in ../config.status cd .. \