+2004-10-21 Alexandre Duret-Lutz <adl@gnu.org>
+
+ * automake.in (get_object_extension): The extension to use is know
+ by the caller, and cannot be selected by looking only at the
+ target name. Simplify this function to simply conditionally
+ prepend $U to the given extension.
+ (handle_programs, handle_libraries, handle_ltlibraries): Hard-code
+ the extension to use. This way Automake won't mistake a program
+ named `foo.la' as a libtool library.
+ * tests/primary3.test: New file.
+ * tests/Makefile.am (TESTS): Add primary3.test.
+
2004-10-12 Alexandre Duret-Lutz <adl@gnu.org>
* doc/automake.texi (Install): Link to node Extending for examples.
return "\$($varname)"
}
-# get_object_extension ($OUT)
-# ---------------------------
-# Return object extension. Just once, put some code into the output.
-# OUT is the name of the output file
-sub get_object_extension
+# get_object_extension ($EXTENSION)
+# ---------------------------------
+# Prefix $EXTENSION with $U if ansi2knr is in use.
+sub get_object_extension ($)
{
- my ($out) = @_;
-
- # Maybe require libtool library object files.
- my $extension = '.$(OBJEXT)';
- $extension = '.lo' if ($out =~ /\.la$/);
+ my ($extension) = @_;
# Check for automatic de-ANSI-fication.
$extension = '$U' . $extension
my ($where, $one_file) = @$pair;
my $seen_libobjs = 0;
- my $obj = &get_object_extension ($one_file);
+ my $obj = get_object_extension '.$(OBJEXT)';
# Strip any $(EXEEXT) suffix the user might have added, or this
# will confuse &handle_source_transform and &check_canonical_spelling.
$where->push_context ("while processing library `$onelib'");
$where->set (INTERNAL->get);
- my $obj = &get_object_extension ($onelib);
+ my $obj = get_object_extension '.$(OBJEXT)';
# Canonicalize names and check for misspellings.
my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
my ($where, $onelib) = @$pair;
my $seen_libobjs = 0;
- my $obj = &get_object_extension ($onelib);
+ my $obj = get_object_extension '.lo';
# Canonicalize names and check for misspellings.
my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
--- /dev/null
+#! /bin/sh
+# Copyright (C) 2004 Free Software Foundation, Inc.
+#
+# This file is part of GNU Automake.
+#
+# GNU Automake is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# GNU Automake is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Automake; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+# Make sure we can build programs ending in `.la'
+
+required=gcc
+. ./defs || exit 1
+
+set -e
+
+cat >>configure.in <<EOF
+AC_PROG_CC
+AC_OUTPUT
+EOF
+
+cat > Makefile.am << 'END'
+bin_PROGRAMS = foo.la
+foo_la_SOURCES = foo.c
+END
+
+echo 'int main () { return 0; }' > foo.c
+
+$ACLOCAL
+$AUTOCONF
+$AUTOMAKE
+./configure
+$MAKE