From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: [Makefile] Re-compile if FLAGS change Date: Tue, 26 Jun 2012 19:30:52 +0530 Message-ID: <81vciejhpn.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:33551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjWKN-00015U-LF for emacs-orgmode@gnu.org; Tue, 26 Jun 2012 10:01:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SjWKH-0002Cm-AQ for emacs-orgmode@gnu.org; Tue, 26 Jun 2012 10:01:11 -0400 Received: from mail-pb0-f41.google.com ([209.85.160.41]:45418) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjWKH-0002Bt-1K for emacs-orgmode@gnu.org; Tue, 26 Jun 2012 10:01:05 -0400 Received: by pbbrp2 with SMTP id rp2so135035pbb.0 for ; Tue, 26 Jun 2012 07:01:02 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Orgmode --=-=-= Content-Type: text/plain Apply the following patch and regenerate the html manual. You will see that the manual doesn't get *re*-generated. Can someone review the current rules to DTRT? -- --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=scraps1.diff diff --git a/default.mk b/default.mk index 7bdb7df..af871b6 100644 --- a/default.mk +++ b/default.mk @@ -103,7 +103,7 @@ MKDIR = install -m 755 -d MAKEINFO = makeinfo # How to create the HTML file -TEXI2HTML = makeinfo --html --number-sections +TEXI2HTML = makeinfo --html --number-sections --no-headers # How to find files FIND = find --=-=-=--