+2004-03-22 Alexandre Duret-Lutz <adl@gnu.org>
+
+ * doc/automake.texi (Default _SOURCES): Typo.
+ (true): Correct _'s placement in example.
+ Report from Stepan Kasal.
+
2004-03-19 Alexandre Duret-Lutz <adl@gnu.org>
Overriding JAVAROOT is legitimate, do not warn about it.
more work:
@example
-true._o: true._c false.o
- $(COMPILE) -DEXIT_CODE=0 -c true.c
+true_.o: true_.c false_.o
+ $(COMPILE) -DEXIT_CODE=0 -c true_.c
-false._o: true._c
- $(COMPILE) -DEXIT_CODE=1 -c true.c && mv true._o false.o
+false_.o: true_.c
+ $(COMPILE) -DEXIT_CODE=1 -c true_.c && mv true_.o false_.o
@end example
As it turns out, there is also a much easier way to do this same task.
@file{sub/libc++.c}. (In older versions @file{sub/libc++.a}
would be built from @file{sub_libc___a.c}, i.e., the default source
was the canonized name of the target, with @file{.c} appended.
-Be believe the new behavior is more sensible, but for backward
+We believe the new behavior is more sensible, but for backward
compatibility automake will use the old name if a file or a rule
with that name exist.)