]> sourceware.org Git - automake.git/commitdiff
* program.am: Fix a stupid typo: now *all* (not none) the programs
authorAkim Demaille <akim@epita.fr>
Wed, 28 Mar 2001 07:31:04 +0000 (07:31 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 28 Mar 2001 07:31:04 +0000 (07:31 +0000)
use `$(EXEEXT)'.
Reported by Robert Boehne.

ChangeLog
lib/am/program.am
program.am

index 28a5ad493d13819aaa2281b2ee69ccb1ada3a633..464ebf71896dd1a167448d340da67bd5b7c841c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-03-28  Akim Demaille  <akim@epita.fr>
+
+       * program.am: Fix a stupid typo: now *all* (not none) the programs
+       use `$(EXEEXT)'.
+       Reported by Robert Boehne.
+
 2001-03-23  Akim Demaille  <akim@epita.fr>
 
        * automake.in (&read_am_file, &file_contents): Avoid name clashes
index 2b995bdf93e6f759dc243004d6578da527b86ae9..a624e9fcc107471d4e8d46c904acad2eaca0661a 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+## Copyright 1994, 1995, 1996, 1997, 2001 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
 ## along with this program; if not, write to the Free Software
 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 ## 02111-1307, USA.
-%PROGRAM%: $(%XPROGRAM%_OBJECTS) $(%XPROGRAM%_DEPENDENCIES)
+%PROGRAM%$(EXEEXT): $(%XPROGRAM%_OBJECTS) $(%XPROGRAM%_DEPENDENCIES)
 ## Remove program before linking.  Otherwise the link will fail if the
 ## program is running somewhere.  FIXME: this could be a loss if
 ## you're using an incremental linker.  Maybe we should think twice?
 ## Or maybe not... sadly, incremental linkers are rarer than losing
 ## systems.
-       @rm -f %PROGRAM%
+       @rm -f %PROGRAM%$(EXEEXT)
        $(%XLINK%) $(%XPROGRAM%_LDFLAGS) $(%XPROGRAM%_OBJECTS) $(%XPROGRAM%_LDADD) $(LIBS)
index 2b995bdf93e6f759dc243004d6578da527b86ae9..a624e9fcc107471d4e8d46c904acad2eaca0661a 100644 (file)
@@ -1,5 +1,5 @@
 ## automake - create Makefile.in from Makefile.am
-## Copyright 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+## Copyright 1994, 1995, 1996, 1997, 2001 Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
 ## along with this program; if not, write to the Free Software
 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 ## 02111-1307, USA.
-%PROGRAM%: $(%XPROGRAM%_OBJECTS) $(%XPROGRAM%_DEPENDENCIES)
+%PROGRAM%$(EXEEXT): $(%XPROGRAM%_OBJECTS) $(%XPROGRAM%_DEPENDENCIES)
 ## Remove program before linking.  Otherwise the link will fail if the
 ## program is running somewhere.  FIXME: this could be a loss if
 ## you're using an incremental linker.  Maybe we should think twice?
 ## Or maybe not... sadly, incremental linkers are rarer than losing
 ## systems.
-       @rm -f %PROGRAM%
+       @rm -f %PROGRAM%$(EXEEXT)
        $(%XLINK%) $(%XPROGRAM%_LDFLAGS) $(%XPROGRAM%_OBJECTS) $(%XPROGRAM%_LDADD) $(LIBS)
This page took 0.034179 seconds and 5 git commands to generate.