kc3-lang/automake

Branch :


Log

Author Commit Date CI Message
8de13de5 2001-02-09 07:06:53 Clean up maintainer-check warnings: * Makefile.am (maintainer-check): Ignore comment lines in CDPATH check. * automake.in (handle_dist_worker): Removed redundant `my $xform'.
1bac428a 2001-02-09 03:39:18 * automake.in (&file_contents): Remove a dead branch.
4ec2083b 2001-02-09 03:38:16 * automake.in (&transform): Use `my', not `local'. (&transform_cond): New. (&get_object_extension, &handle_texinfo, &handle_tags) (&handle_dist_worker, &handle_dist, &add_depend2, &handle_clean) (&handle_tests_dejagnu): Use it. * texinfos.am, lisp.am, header.am, dist.am, distdir.am, depend2.am * dejagnu.am, data.am, clean.am: Adjust to the new syntax.
7cda827c 2001-02-09 02:48:24 * automake.in: Various formatting changes, and modernization of Perl constructs. (&backname): New. (&handle_configure, define_standard_variables): Use it.
2c095a8d 2001-02-09 02:30:27 * automake.in (file_contents): Only add $actions if any are found. Fixes new failure in pr87.test.
cac69f73 2001-02-09 01:18:38 * tests/pr87.test: Check foo/Makfile.in after it is created.
f66390fe 2001-02-08 19:32:30 updated comment
4639a526 2001-02-08 19:31:12 * tests/pr87.test: Added check for blank line after `.c.o' rule. Report from Lars J. Aas.
3a9416ef 2001-02-08 19:13:23 mention Perl 5 in HACKING
b46ae388 2001-02-08 06:36:14 * lisp.am (install-@DIR@LISP): Removed extra space. * header.am (install-@DIR@HEADERS): Removed extra space. * data.am (install-@DIR@DATA): Removed extra space.
6171edd6 2001-02-08 06:32:16 * m4/init.m4 (AM_INIT_AUTOMAKE): Use \", not ".
68cbb321 2001-02-08 05:48:09 * automake.in (handle_dependencies): Use _am_include, not AMINCLUDE. * tests/exsource.test: Use _am_include, not AMINCLUDE. * m4/make.m4 (AM_MAKE_INCLUDE): Use _am_include, not AMINCLUDE.
522efd83 2001-02-08 05:44:52 updated HACKING
b71fc974 2001-02-08 05:21:43 * tests/Makefile.am (XFAIL_TESTS): Removed distcommon.test.
aa655488 2001-02-07 21:51:39 * tests/Makefile.am (EXTRA_DIST): Added ChangeLog-old.
96c0bb15 2001-02-07 21:19:35 Renamed ChangeLog
a83155d5 2001-02-07 21:15:06 * automake.in (handle_configure): Handle case where output file is in subdir with no Makefile of its own. Fixes remake3.test, distcommon.test.
05131a01 2001-02-07 21:14:12 * Makefile.am (XFAIL_TESTS): Removed remake3.test, distcommon.test.
fe2019cc 2001-02-07 20:55:43 * Makefile.am (XFAIL_TESTS): Added new files.
b88ca08f 2001-02-07 20:55:07 * distcommon.test: New file. * Makefile.am (TESTS): Added new file.
33ed28a0 2001-02-07 20:07:28 * distcommon.test: New file. * Makefile.am (TESTS): Added new file.
f79105ed 2001-02-06 15:10:35 Typos.
f8a4ccd9 2001-02-06 15:03:59 * automake.in (handle_dependencies): Rename AM_INCLUDE to AMINCLUDE. * m4/make.m4 (AM_MAKE_INCLUDE): Likewise. * tests/exsource.test: Likewise.
79875bcf 2001-02-06 10:25:21 * autoheader.sh: only set config_h for the first call to AC_CONFIG_HEADERS
3d392023 2001-02-06 10:21:38 * automake.in (handle_configure): fix syntax error
de7f0818 2001-02-06 10:17:57 * subdirs.am: This file is the exception: clean recursive targets are called by the clean targets, not the clean-am targets. Otherwise we have a circular dependency: clean -> clean-am -> clean-recursive -> clean. * automake.in (handle_clean): Bind `-local' targets to `-am' targets, not top targets. Don't declare -recursive dependencies of the clean targets: `subdirs.am' did it. Less hard coded knowledge, transfered into... * clean.am: here.
c85255be 2001-02-06 09:22:15 Fix `unless' uses.
23f00832 2001-02-06 09:11:00 Add maintainer-clean.
8a34b58d 2001-02-06 09:09:36 Monstro unsplitable patch. The aim is to remove hard coded knowledge about clean targets from automake.in, leaving them in the *.am files. In addition to the mechanic needed to factor some dependencies, it appears some rules (most notably distclean and maintainer-clean) need factored actions. So first, be ready to catch factored rules. * automake.in (&file_contents): For the time being, use an extended $RULE_PATTERN which is able to match any kind of rules, with or without dependency, with or without actions. Handle all the rules uniformly, storing in %actions the factored actions. (&flatten, &target_cmp): New. (&handle_factored_dependencies): Output the %actions. No longer special case `clean'. Output the rules in alphabetical order, but keeping `.PHONY' last. Now we must not use &push_phony_cleaners, which is doing all sort of magic to push a bit of everything in all the clean targets. The biggest problem being that, making a Cartesian product, it requires many useless targets. The `*.am' file know better. But first, register the new factored rules. * automake.in (&initialize_per_input): Include clean, mostlyclean, maintainer-clean, distclean and their `*-am' counterpart in %dependencies. Initialize %actions. (get_object_extension, handle_texinfo, handle_tags, handle_multilib) handle_dependencies, handle_subdirs, handle_configure, handle_clean) (handle_emacs_lisp, handle_python): Don't play with &push_phony_cleaners nor &depend and `clean'. * texinfos.am, texi-vers.am, tags-clean.am: * subdirs.am,python-clean.am, multilib.am, lisp-clean.am: * libtool.am, kr-extra.am, depend.am, compile.am, clean.am: * clean-kr.am, clean-hdr.am: Do it. Whenever a target is empty, just remove it, it will no longer be called. There is still some magic about clean to hard code. But really, that's the end of &do_one_clean_target. * automake.in (&do_one_clean_target): Kaboom out. (&handle_clean): Rewrite the magic code. (&am_install_var): No longer use &push_phony_cleaners, nor depend on `clean'. (&push_phony_cleaners): Kaboom too.
279adc2a 2001-02-06 09:08:56 * automake.in (do_one_clean_target): Don't hard code knowledge about libtool, and maintainer-clean. * clean.am, libtool.am: Handle these.
c9a4efae 2001-02-05 09:11:10 * automake.in (handle_texinfo): No longer hard code the clean targets. (texinfos.am): Include them.
491b77b4 2001-02-05 09:09:17 * Makefile.am (perl4-check): Remove, we now require Perl 5. (maintainer-check): Don't be silent when you find a problem, and actually, even specify the locations. Also check that @_ is assigned to arrays.
fddb6ef1 2001-02-05 09:06:41 * m4/regex.m4: Use AC_LIBSOURCES. * automake.in (scan_autoconf_traces): Trace AC_LIBSOURCE, not _AC_LIBOBJ_DECL.
daea6dee 2001-02-05 06:59:03 * m4/Makefile.am (m4data_DATA): Added make.m4. * automake.in (handle_dependencies): Use @AM_INCLUDE@ to include dependency files. * m4/depend.m4 (AM_DEPNDENCIES): Require AM_MAKE_INCLUDE. Copy depcomp to subdir. * m4/make.m4: New file.
3e199386 2001-02-05 06:58:21 * exsource.test: Updated for new include code.
b955e025 2001-02-05 01:42:12 * automake.in (handle_dist_worker): Remove a line that is now in distdir.am.
19c2eb96 2001-02-04 23:49:53 2001-02-04 Kevin Ryde <user42@zip.com.au> * automake.in (handle_configure): Call config.status with empty CONFIG_LINKS and CONFIG_COMMANDS when regenerating a file.
be46346b 2001-02-04 23:31:46 * depcomp (ddashmd): Removed case. (sgi): Handle failure exit correctly (aix): Likewise. Also, add dummy `.h' targets.
bb9809a5 2001-02-04 16:50:49 Add.
8f0f4563 2001-02-04 15:10:23 * distdir.am (distdir): New file, extracted from... * automake.in (handle_dist_worker): here. Adjust.
7435a92b 2001-02-04 14:43:00 * automake.in (@clean): Remove, replaced by... ($dependencies{'clean'}): this. Use `&depend' instead of push'ing into @clean. (handle_factored_dependencies): For the time being, skip 'clean'. (do_one_clean_target): Don't ask for argument 1 and 4 as they are always `clean', and `@clean'.
38a041ba 2001-02-04 14:42:37 * automake.in (%dependencies): Don't be initialize globally for all the files, but in... (&initialize_per_input): here. (&depend): New. (@phony): Replace all occurrences with the corresponding &depend invocation.
d2a26602 2001-02-04 04:43:11 * header.am (install-@DIR@HEADERS): Use INSTALL_HEADER. * header-vars.am (INSTALL_HEADER): New macro.
16646f9a 2001-02-04 04:37:10 * automake.texi (Rebuilding): New node.
276aa452 2001-02-04 04:03:08 2000-12-29 Derek Price <derek.price@openavenue.com> * automake.in (handle_dependencies): Switched the DEP_FILES definition to be conditional on @AMDEP@.
04e6519b 2001-02-04 03:51:19 2001-02-03 Ville Laurikari <vlaurika@hutcs.cs.hut.fi> * depcomp (aix): New side-effect dependency tracking mode, for the C for AIX compiler. * m4/depend.m4 (AM_DEPENDENCIES): Recreate `conftest.c' and `conftest.h' for each test.
3c30a281 2001-02-04 03:44:01 * automake.texi (Dist): Updated to mention caveat of putting directory in EXTRA_DIST and also providing a nice example of removing the CVS dir. From Ganesan Rajagopal.
3c606e80 2001-02-04 03:41:45 * m4/depend.m4 (depcpp): Run tests in a subdir. Fixes report from Bob Proulx.
0edc0b41 2001-02-04 03:29:15 * automake.in (scan_one_autoconf_file): Disable warning about AM_PROG_LIBTOOL.
fbed01b8 2001-02-04 03:27:52 * automake.in (handle_configure): Don't modify variable which aliases list element. Don't push @inputs onto the dist list. Fixes colon7.test. (initialize_per_input) [dist_dirs]: New variable. (handle_dist_worker): Use global dist_dirs. (handle_configure): Set dist_dirs entries at toplevel.
ef931d9f 2001-02-04 03:18:01 * Makefile.am (XFAIL_TESTS): Removed colon7.test.
182b5371 2001-02-03 05:56:41 * automake.texi (Java Support): Added index, @section.
a543ded5 2001-02-02 15:10:13 * automake.in (scan_autoconf_traces): Restore trace messages.
b65c732a 2001-02-02 12:33:19 * automake.in (handle_aclocal_m4): Fix stripping of the initial "./" from the dependencies of aclocal.m4. Reported by Ralf Corsepius.
609ca4ad 2001-02-01 23:53:33 * aclocal.in: Rename "verbosity" to "verbose". Always prepend "aclocal: " to the verbose output.
2ac1ddae 2001-02-01 22:51:40 * automake.in: Remove all debugging messages.
061b0532 2001-01-31 17:47:54 * automake.in (add_depend2): Quote properly $obj and $source.
148a155a 2001-01-31 16:50:02 * depend2.am: Instead of replacing @PFX@ in $(@PFX@COMPILE), and then replacing `$(@PFX@COMPILE)' for the files that need some special flags, use only @COMPILE@. Similarly for @LTCOMPILE@. Try to document this file. * automake.in (add_depend2): Adjust to these changes.
7a394d5e 2001-01-31 14:36:21 * automake.in (%factored_dependencies): New. (file_contents): Use it. (handle_phony): Rename as... (handle_factored_dependencies): this. * subdirs.am: No need for convolved syntax to declare .PHONY.
d75b0320 2001-01-31 14:23:21 * automake.in: maintainer-check fixes.
b2669526 2001-01-31 14:16:17 * automake.in (file_contents): Rewrite: instead of trying to parse it line by line, first swallow it completely into $CONTENTS, *then*, parse it *paragraph* by paragraph.
746021b7 2001-01-31 13:39:22 * automake.in (file_contents): Remove. (file_contents_with_transform): Swap the order of the arguments, and rename as... (file_contents): this. Adjust all uses.
8d840c0b 2001-01-31 04:05:43 removed a couple spurious newlines
823b9cc8 2001-01-31 04:00:45 * automake.in (scan_one_autoconf_file): Don't mention omit_dependencies.
e8355a9a 2001-01-29 17:37:22 * automake.in (&scan_autoconf_config_files): Extract from &scan_one_autoconf_file. (&scan_one_autoconf_file): Use it. (&scan_autoconf_traces): New. ($scan_autoconf_files): Use it.
0fcabc77 2001-01-29 17:36:44 * texinfos.am, tags.am, subdirs.am, multilib.am, mans.am: Add a .PHONY target. * automake.in (handle_texinfo, handle_man_pages, handle_multilib) (handle_etags, handle_subdirs): Don't push into @phony.
e397e2f3 2001-01-29 12:01:43 * automake.in (scan_one_autoconf_file): Correctly recognize configure.ac.
11ae63e4 2001-01-29 12:00:56 * automake.in (handle_tests_dejagnu): New, extracted from... (handle_tests): here. Use `.PHONY:'.
f2808296 2001-01-29 09:41:43 * automake.in (handle_phony): Sort. (file_contents_with_transform): Catch `.PHONY:'. (handle_tests): Instead dumping the hard coded target check-TESTS and registering its .PHONYsm, get them from... * check.am: here, new file.
f985cce3 2001-01-29 09:30:02 * automake.in (add_depend2): Use &transform.
a44e29eb 2001-01-29 09:27:18 * automake.in (handle_tags): Use &transform. (am_error, am_line_error, am_conf_error, read_am_file): Use directly arrays in strings, no need for &join. Require Perl 5. * Makefile.am (maintainer-check): Use grep -w when looking for words.
5345069b 2001-01-29 09:17:29 * automake.in (prog_error): New. Spread its use.
6b1db06f 2001-01-29 09:16:35 * automake.in (handle_single_transform_list): if (@list) { foreach (@list) ...} can be written as a simple `foreach' loop.
6a93be56 2001-01-29 09:16:00 * automake.in (define_standard_variables): Use &transform instead of build_rx.
2fcc601f 2001-01-29 09:14:26 * automake.in (handle_texinfo): Use the new $texinfodir instead of the removed $texinfo_tex.
24170bbc 2001-01-29 09:12:15 * automake.in (handle_libraries, handle_ltlibraries): Use &transform.
72fb36b1 2001-01-29 09:00:32 * automake.in (handle_programs) <xexe>: Remove, replaced by `exeext'. Use it, and &transform.
341bb713 2001-01-29 08:58:00 * automake.in (get_object_extension) <$default_includes>: New. Use it and &transform.
1ea47381 2001-01-29 06:15:51 * automake.in (variable_value_as_list_worker): Handle entries in %am_var_defs. Fixes listval.test.
16433345 2001-01-29 05:55:23 * listval.test: New file. * Makefile.am (TESTS): Added listval.test.
eafcdfcb 2001-01-26 22:29:42 * makevars.test: Fail if automake fails.
388e3497 2001-01-26 22:17:49 * Makefile.am (XFAIL_TESTS): Added colon7.test.
225eebfa 2001-01-26 15:07:45 * automake.in (handle_texinfo): Don't use $conf_pat, just $conf_dir to transform MDDIR since now &transform handles the escaping of RE special characters by itself.
dc9a4021 2001-01-26 14:21:37 * m4/depend.m4 (AM_DEPENDENCIES): Don't leave `AC_PROG_CC' etc. in clear. * m4/init.m4: Likewise. * m4/sanity.m4: s/conftestfile/conftest.file/.
026398df 2001-01-25 23:11:12 * makevars.test: Disable shell tracing.
a734beab 2001-01-25 16:59:58 * makevars.test: New.
b37ff24a 2001-01-25 15:50:36 * m4/depend.m4 (AM_DEPENDENCIES): Don't leave `AC_PROG_CC' etc. in clear. * m4/init.m4: Likewise. * m4/sanity.m4: s/conftestfile/conftest.file/.
e36d38fd 2001-01-25 03:28:51 * automake.in (handle_libraries): Use $configure_ac; typo fix.
f0d10ac4 2001-01-25 03:26:55 * automake.in (transform): Quote substitution.
0249b08b 2001-01-24 14:40:41 * vtexi.test (info_TEXINFOS): Escape a $ in egrep pattern.
34e7f7b8 2001-01-23 22:51:38 formatting fix to ChangeLog
259b0dab 2001-01-23 13:54:25 * vtexi.test: Also check that stamp-vti properly depends upon configure.in and the Texinfo source file.
351be497 2001-01-21 21:12:09 2001-01-21 Kevin Ryde <user42@zip.com.au> * colon7.test: Grep for a couple of AC_OUTPUT problems.
1c3a6ac2 2001-01-21 20:46:28 2001-01-21 Alexandre Duret-Lutz <duret_g@epita.fr> Tom Tromey <tromey@redhat.com> * automake.in (obsolete_rx): Match whole macro names, not substrings. aclocal.in (obsolete_rx): Likewise.
a47ff8a7 2001-01-21 20:45:10 * automake.texi: Changed dir category.
67b81047 2001-01-18 17:20:09 * automake.in (handle_texinfo): Use &transform, and transform CONFIGURE_AC. Reported by Lars Hecking, and diagnosed by Raja R Harinath.
48a522a9 2001-01-16 13:31:54 automake.in: Remove development code. Reported by Lars.
4ea6c12e 2001-01-16 11:15:21 Let Automake support `configure.ac'. * automake.in: In the comments, prefer `configure.ac' to `configure.in'. When using &am_conf_error, don't repeat `in configure.in', since the function already reports it. When referring to `configure.in' use `$configure_ac' instead. (configure_ac): New global variable. (scan_configure, scan_one_configure_file): Rename as... (scan_autoconf_files, scan_one_autoconf_file): this. (scan_autoconf_files): Compute $configure_ac. (transform): New function. (handle_configure): Use it to transform CONFIGURE_AC in `remake.am' and in `remake-hdr.am'. (common_files): Also consider `configure.ac'. Use consistently single quotes. * aclocal.in (configure_ac): New variable. Use it. * texi-vers.am: Depend on CONFIGURE_AC not configure.in. * remake.am: Likewise. * remake-hdr.am: Likewise.
1e2c6b41 2001-01-16 11:04:36 * m4/multi.m4: Remove the hairy useless quotation of `$'. Simplify `ifelse([$2],,,[$2])' into... `$2'! * m4/minuso.m4: Don't use changequote! * m4/cond.m4: Fix quotation. * m4/sanity.m4: Follow the Autoconf coding style. * m4/missing.m4 (AM_MISSING_INSTALL_SH): Use a for loop. * m4/depend.m4 (AM_DEPENDENCIES): Fix quotation issues. Use AC_CACHE_CHECK.
17428a19 2001-01-16 06:34:03 * automake.in (handle_single_transform_list): Don't print rule here when source is in subdir and object is not. Fixes subobj4.test.