nmh-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Nmh-commits] nmh ChangeLog config/Makefile.in sbr/Makefile.in


From: Oliver Kiddle
Subject: [Nmh-commits] nmh ChangeLog config/Makefile.in sbr/Makefile.in
Date: Fri, 16 May 2008 15:31:30 +0000

CVSROOT:        /sources/nmh
Module name:    nmh
Changes by:     Oliver Kiddle <opk>     08/05/16 15:31:30

Modified files:
        .              : ChangeLog 
        config         : Makefile.in 
        sbr            : Makefile.in 

Log message:
        don't use $< in target rules in makefiles, as POSIX says it's only 
defined
        in inference rules

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/nmh/ChangeLog?cvsroot=nmh&r1=1.265&r2=1.266
http://cvs.savannah.gnu.org/viewcvs/nmh/config/Makefile.in?cvsroot=nmh&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/nmh/sbr/Makefile.in?cvsroot=nmh&r1=1.25&r2=1.26

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/nmh/nmh/ChangeLog,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -b -r1.265 -r1.266
--- ChangeLog   13 May 2008 02:39:04 -0000      1.265
+++ ChangeLog   16 May 2008 15:31:26 -0000      1.266
@@ -1,3 +1,8 @@
+2008-05-16  Oliver Kiddle <address@hidden>
+
+       * sbr/Makefile.in, config/Makefile.in: Don't use $< in target rules
+       in makefiles, as POSIX says it's only defined in inference rules.
+
 2008-05-13  David Levine <address@hidden>
 
        * configure.in, INSTALL: if --enable-masquerade is not

Index: config/Makefile.in
===================================================================
RCS file: /sources/nmh/nmh/config/Makefile.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- config/Makefile.in  4 May 2008 16:09:09 -0000       1.5
+++ config/Makefile.in  16 May 2008 15:31:27 -0000      1.6
@@ -1,7 +1,7 @@
 #
 # Makefile for config subdirectory
 #
-# $Id: Makefile.in,v 1.5 2008/05/04 16:09:09 pm215 Exp $
+# $Id: Makefile.in,v 1.6 2008/05/16 15:31:27 opk Exp $
 #
 
 # nmh version
@@ -58,7 +58,7 @@
        ${srcdir}/version.sh $(VERSION) > version.c
 
 config.o: config.c
-       $(COMPILE2) $<
+       $(COMPILE2) $(srcdir)/config.c
 
 install:
 

Index: sbr/Makefile.in
===================================================================
RCS file: /sources/nmh/nmh/sbr/Makefile.in,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- sbr/Makefile.in     4 May 2008 16:09:09 -0000       1.25
+++ sbr/Makefile.in     16 May 2008 15:31:28 -0000      1.26
@@ -1,7 +1,7 @@
 #
 # Makefile for sbr subdirectory
 #
-# $Id: Makefile.in,v 1.25 2008/05/04 16:09:09 pm215 Exp $
+# $Id: Makefile.in,v 1.26 2008/05/16 15:31:28 opk Exp $
 #
 
 SHELL = /bin/sh
@@ -104,13 +104,13 @@
 # Note that some lexes (for example flex 2.5.4) require that there
 # be no space between -o and the output filename.
 dtimep.c: dtimep.lex
-       $(LEX) -o$@ $<
+       $(LEX) -n -t $(srcdir)/dtimep.lex > dtimep.c
 
 client.o: client.c
-       $(COMPILE2) $<
+       $(COMPILE2) $(srcdir)/client.c
 
 mts.o: mts.c
-       $(COMPILE2) $<
+       $(COMPILE2) $(srcdir)/mts.c
 
 pidstatus.o: sigmsg.h
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]