* tests/aclocal6.test: Check for autom4te.cache only if it has
[automake.git] / TODO
blob7959de00568f708caffac67cf2c21513b437ebc4
1 we can't seem to AC_SUBST(pkgdatadir)
2 the version from header-vars overrides
3 why is that?
5 check should depend on all
6   from ben elliston
8 the new YFLAGS code doesn't correctly handle srcdir
10 allow foo_NAME to rename an object (library or program)
11 at build/install time
13 remove _LTLIBRARIES and just use _LIBRARIES
14 then use this for zip/jar as well
16 for 1.5
17 investigate problems with conditionally defined libraries
19 add an error if the user makefile.am violates our
20    namespace rules
22 we need a document describing automake from the end user's point of view
23 eg describe INSTALL_HEADER there, among other things
25 * maintainer-clean
27 Akim:
28 > @@ -31,5 +31,9 @@
29 >  DISTCLEAN    -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
31 >  maintainer-clean-generic:
32 > +## FIXME: shouldn't we really print these messages before running
33 > +## the dependencies?
34 > +     @echo "This command is intended for maintainers to use"
35 > +     @echo "it deletes files that may require special tools to rebuild."
36 >         -rm -f Makefile.in
38 Tom:
39 > I'd like to eventually fix the FIXME comment by having
40 > maintainer-clean look like:
42 >     maintainer-clean:
43 >         @echo ...
44 >         $(MAKE) whatever
46 > We're left with the question of whether we should repeat them in every
47 > subdir.
50 Alexandre Oliva:
51 > Hmm...  Interesting.  It must have been a side effect of the enabling
52 > of forced `relink' on GNU/Linux/x86.  Anyway, on platforms that
53 > actually require relinking, this problem remains, and I see no way to
54 > overcome it other than arranging for automake to install libraries
55 > before executables, as you suggest.  This shouldn't be a big problem,
56 > anyway.
58 > A bigger problem could show up if two libraries in the same directory,
59 > one dependent on the other, are installed concurrently.  If relinking
60 > is needed for the dependent library, we have a problem.  It appears to
61 > me that user will have to live without `make -j install', in this
62 > case.
64 Alex Hornby
65 > Here's an Automake patch and changelog entry allow make -j install on
66 > such degenerate systems (and Linux with buggy libtool <g>)
68 > If you install to locations other that bin_ and lib_ then a larger fix
69 > is necessary, but this should fix the 90% case.
71 * think about how per-object flags should work.  in particular:
72   * how should they be specified?
73     using the object name is confusing when .lo/.obj in use
74     however, the object name provides a nice interaction with
75     per-exe flags
76   * how should they interact with per-executable flags?
77   [ this is probably a feature in search of a problem ]
79 * cross-compilation support:
80   programs built and used by the build process need to be
81   built for CC_FOR_BUILD
82   introduce a new prefxi for this, e.g. `build_PROGRAMS'
83   [ we can do this in an automatic way I think.
84     unfortunately it isn't that useful until autoconf has support
85     for this sort of thing as well ]
87 * distcheck should make sure that each file that uses _() is
88   listed in POTFILES.in
89   From Jim Meyering:
90     # Verify that all source files using _() are listed in po/POTFILES.in.
91     po-check:
92             grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1
93             grep -E -l '\b_\(' lib/*.c src/*.c | sort > $@-2
94             diff -u $@-1 $@-2
95             rm -f $@-1 $@-2
97 * one performance enhancement would be to have autoconf write
98   a single file containing all the macro assignments.
99   then read this file via `include'
100   unfortunately this can't be done because of conditionals
101   -- but it could be made to work if we also changed:
102     * automake to rewrite @FOO@ to $(FOO), and
103     * the implementation of conditionals to rely on some new
104       config.status magic
106 * support prog_LIBS as override for LIBS
108 * Test subdir-objects option with yacc, lex, ansi2knr
109   Our locking scheme won't prevent a parallel make from losing
110   if there are two `bar.o' files and the timing is just right
111   This only happens with parallel make and no-`-c -o' compiler,
112   so it probably isn't very important
113   `-c -o' when doing libtool
114   try to find a losing compiler and see if it really works.
115   (actually: hack config.cache and do it)
117 * per-exe flags
118 ** LIBOBJS shouldn't be used when there are per-exe flags (?)
120 * Support subdir-objects with fortran
122 * Allow creation of Java .zip/.jar files in natural way
123   If you are building a compiled Java library, then the .zip/.jar
124   ought to be made automatically.
126 * Run automake before libtool.  It will report an error but
127   still won't put the file into the disty.  This is wrong.
128   From Mark H Wilkinson <mhw@kremvax.demon.co.uk>
130 * examine possibility of using any character in a macro name
131   and rewriting names automatically.  this means we must rewrite
132   all references as well.
133   [ this is a 2.0-style feature ]
135 * `distcheck' and `dist' should depend on `all'
137 * Add code to generate foo-config script like gnome, gtk
139 * document user namespace for macro/target names
140   adopt some conventions and use uniformly
141     [ this is a good thing for the rewrite ]
143 * distclean must remove config.status
144   can't this cause problems for maintainer-clean?
145   shouldn't maintainer-clean print the message before running
146   any part of the make?  (just to slow things down long enough
147   for the user to stop it)
148   (maybe doesn't matter since people who even know about
149   maintainer-clean already have a clue)
151 * reintroduce AM_FUNC_FNMATCH which sets LIBOBJS
152   Then have automake know about fnmatch.h.
153     [ probably should wait for autoconf to get right functionality ]
155 * "make diff" capability
156   look at gcc's Makefile.in to see what to do
157   or look at maint program
159 * in --cygnus, clean-info not generated at top level
161 * what if an element of a scanned variable looks like
162         $(FOO).$(BAR)  ?
163   or some other arbitrary thing?
164   right now we try to cope, but not very well
165     [ this is only of theoretical interest for now ]
166     [ We now have an 'inner_expand' option to traverse_recursively,
167       but it is not yet used. ]
169 * make sure every variable that is used is also defined
170     [ we don't really look at variable uses in detail.
171       2.0 thing ]
173 * make sure `missing' defines are generated
175 * missing should handle install -d and rmdir -p (for uninstall)
177 * NORMAL_INSTALL / NORMAL_UNINSTALL -vs- recursive rules
178   [ requires changes to the standard ]
180 * should not put texiname_TEXINFOS into distribution
181   should rename this macro anyway, to foo_texi_DEPENDENCIES
183 * For now I guess I'll just have automake give an error if it encounters
184 non-C source in a libtool library specification.
186 * must split $obj into two parts: one for libtool and one for
187   deansification.  Otherwise .S files will be deansified!
189 * ansi2knr must currently appear in a directory that has some source
191 * if program has the same name as a target, do something sensible:
192   - if the target is internal, rename it
193   - if the target is mandated (eg, "info"), tell the user
194     consider auto-modifying the program name to work around this
196 * should separate actual options from strictness levels
197   strictness should only cover requirements
198   You should be able to pick and choose options
200 * rewrite in guile (RMS request)
201 at the same time, consider adding a GUI
202 could use the same parsing code for the GUI and the standalone version
203 that means figuring out a better representation of internal state
204 [ that's easy -- anything is better than what we have now ]
206 having just one Makefile for a project would give a big speed increase
207 for a project with many directories, eg glibc.  ideally (?) you'd
208 still be able to have a Makefile.am in each directory somehow; this
209 might make editing conceptually easier.
211 * finish up TAGS work
213 * only remove libtool at top level?
215 * clean up source directory by moving stuff into subdirs
217 * consider adding pkglibexecdir, maybe others?
218   requests for pkg-dirs with version included
220 Avoid loops when installing; instead unroll them in automake
221 [ Impossible when @AC_SUBST@ values are used. ]
223 Some long-term projects:
224 * if $(FOO) is used somewhere, ensure FOO is defined, either by
225   user or by automake if possible
227 [ include, += support ]
228 * even better would be allowing targets in different included
229   fragments to be merged.  e.g., `install-local'.
231 consider putting all check-* targets onto @check?
233 take diff-n-query code from libit
235 Per Bothner says:
236 Per> 1) Being able to build a set of non-source programs
237 Per> from source programs, without necessarily linking them together.
238 Per> I.e. one should be able to say something like:
239 Per>    dummy_SOURCES=foo.c bar.c
240 Per> and automake should realize that it needs to build foo.o and bar.o.
241 Per> 2) Being intelligent about new kinds of suffixes.
242 Per> If it sees:
243 Per>    SUFFIXES = .class .java
244 Per> and a suffix rule of the form:
245 Per>    .java.class:
246 Per> then it should be able to realize it can build .class files from
247 Per> .java files, and thus be able to generate a list of
248 Per> .class files from a list of .java source files.
249 [What Per wanted here was a way to have automate automatically follow
250 suffix rules.  So for instance if you had a `.x.y:' rule, and automake
251 saw a `.x' file, it would automatically build and install the
252 corresponding `.y' file.]
254 !! Must fix require_file stuff.  It is really gross, and I don't
255    understand it any more.
256    [ Seconded. ]
258 Jim's idea: should look for @setfilename and warn if filenames too long
259 * guess split size
261 from joerg-martin schwarz:
262  -- If Makefile.am contains $(CC), $(COMPILE), $(YLWRAP), ....
263     in an explicitly written rule,  you should emit the corresponding
264     Makefile variables automatically.
266 Configuring in the large:
267 * allow hierarchy of dirs to share one aclocal.m4
268   How?
270 consider printing full file name of Makefile.am or configure.in when
271 giving error.  This would help for very large trees with many
272 configure.in scripts
274 From the GNU Standards.  These things could be checked, and probably
275 should be if --gnu.
276 *    Make sure that the directory into which the distribution unpacks (as
277 well as any subdirectories) are all world-writable (octal mode 777).
278 *   Make sure that no file name in the distribution is more than 14
279 characters long.
280 *    Don't include any symbolic links in the distribution itself.
281      (ditto hard links)
282 *    Make sure that all the files in the distribution are world-readable.
283 * standards no longer prohibit ANSI C.  What does this imply
284   for the de-ansi-fication feature? [ must keep it -- some users rely on it ]
286 should be able to determine what is built by looking at rules (and
287 configure.in).  Then built man pages (eg) could automatically be
288 omitted from the distribution.
290 Consider: "cvs" option adds some cvs-specific rules?
292 Right now, targets generated internally (eg "install") are not
293 overridable by user code.  This should probably be possible, even
294 though it isn't very important.  This could be done by generating all
295 internal rules via a function call instead of just appending to
296 $output_rules.
297  [ this will be harder to implement when scanning a rule like all-recursive
298    from subdirs.am ]
300 Other priorities:
301 * Must rewrite am_install_var.  Should break into multiple functions.
302   This will allow the callers to be a little smarter.
303 * Rewrite clean targets.
304 * Fix up require_file junk.
306 djm wants ``LINKS'' variable; list of things to link together after
307 install.  In BSD environment, use:
308         LINKS = from1 to1 from2 to2 ...
310 Need way to say there are no suffixes in a Makefile (Franc,ois'
311 "override" idea suffices here)
313 Check to make sure various scripts are executable (IE when looking for
314 them in a directory)
316 Handle dist-zoo.  Generally add more DOS support.  Maybe run "doschk"
317 (why isn't this merged with "pathchk"?) when doing a dist.  Do
318 whatever else François says here...
320 Add support for html via an option.  Use texi2html.  Use
321 "html_TEXINFOS", and htmldir = .../html.  Include html files in
322 distribution.  Also allow "html_DATA", for raw .html files.
323   [ when will texinfo directly support html? ]
325 uninstall and pkg-dirs should rm -rf the dir.
327 In general most .am files should be merged into automake.  For
328 instance all the "clean" targets could be merged by keeping lists of
329 things to be removed.  This would be a lot nicer looking.  Note that
330 the install targets probably should not be merged; it is sometimes
331 useful to only install a small part.
333 * Clean up the output:
334 ** Order rules sensibly
335 ** Ensure every line has a purpose.  Omit unused stuff
336 ** Eliminate extraneous rules when possible (eg 'install-am' stuff)
337 ** Make sure vertical spacing is correct
338 Omit program transform vars from header if no program installed.  This
339 is currently pretty hard to do.  (But with beautification code it
340 would probably be easy)
342 * Lex, yacc support:
343 ** It would be nice to automatically support using bison's better features
344   to rename the output files.  This requires autoconf support
345 ** Consider supporting syntax from autoconf "derived:source", eg:
346         y.tab.c:perly.y
347   for yacc and lex source
348 ** what if you use flex and the option to avoid -lfl?
349   should support this?
351 * Multi-language support:
352 ** should have mapping of file extensions to languages
353 ** should automatically handle the linking issue (special-case C++)
354 ** must get compile rules for various languages; FORTRAN probably
355   most important unimplemented language
356 This should be integrated in some way with Per's idea.
357 Eg .f.o rules should be recognized & auto-handled in _SOURCES
358 That way any random language can be treated with C/C++ on a first-class
359 basis (maybe)
361 It might be cool to generate .texi dependencies by grepping for
362 @include.  (If done, it should be done the same way C dependencies are
363 done)
364 [ Ask Karl Berry for a -M option to makeinfo and texi2dvi? ]
366 It would be good to check some parts of GNU standards.  Already check
367 for install-sh and mkinstalldirs.  What else is required to be in
368 package by GNU standards or by automake?
369 Some things for --strictness=gnits:
370 * "cd $(foo); something" is an error in a rule.  Should be:
371   "cd $(foo) && something"
372 * Look for 'ln -s' and warn about using $(LN_S) and AC_PROG_LN_S
373 * Look for $(LN_S) and require AC_PROG_LN_S
375 Auto-distribute "ChangeLog.[0-9]+"?  "ChangeLog.[a-z]+"?
377 Internationalize. [ gettext doesn't have the necessary machinery yet ]
378 am_error should use printf-style arguments (for eventual gettext scheme)
380 François says the ordering of files in a distribution should be as follows:
381 * README
382 * source files
383 * derived files
384 I agree, but I don't see how to implement this yet.
385 It might be easier if "derived files" is limited to those that
386 Automake itself knows about, eg output of yacc.
388 Check all source files to make sure that FSF address is up-to-date.
389 --gnits or --gnu only.
391 Merge each -vars.am file with corresponding ".am" file.  Can do this
392 because of changes to &file_contents.
394 Should libexec programs have the name transform done on them?
396 Order the output rules sensibly, so FOO_SOURCES and FOO_OBJECTS are
397 together and rules are in the usual order.
399 Make the output minimal: only output definitions for variables that
400 are used.
402 djm says:
403 David> To avoid comments like the one about subdirs getting buried in
404 David> the middle of a Makefile.in, how about pushing comments that
405 David> start with ### to the top of the Makefile.in (in order)?  Sort
406 David> of like how Autoconf uses diversions to force initialization
407 David> code to the top of configure.
409 Karl Berry says:
410 Karl> 2) Your Makefile variable names are generally uppercase, but GNU
411 Karl> generally uses lowercase. Not that it matters :-).
413 ================================================================
415 Stuff for aclocal:
417 probably should put each group of m4 files into a subdir owned by the
418 containing application.
420 ================================================================
422 Document:
424 AM_MISSING_PROG
426 how to use the generated makefiles
427  - standard targets
428  - required targets
429  - NORMAL_INSTALL junk
431 rationale for avoiding
432         make CFLAGS="$CFLAGS" ...
433 in subdirs make rule
435 write example of using automake with dejagnu
436 follow calc example in dejagnu docs
438 document which variables are actually scanned and which are not.
440 Document customary ordering of Makefile.am.  From François.
442 Should include extended version of diagram from Autoconf (suggested by
443 Greg Woods)
445 Make a definition of the term "source"
447 document how to use Automake with CVS.  Idea from Mark Galassi.  Also
448 include Greg Woods' more sophisticated "cvs-dist" target.
450 -- must document all variables that are supposed
451    to be public knowledge
453 must document the targets required for integration with
454 non-automake-using subdirs
456 document the "make SHELL='/bin/sh -x'" trick for debugging
458 section on relationship to GNU make.  include notes on parallel makes
460 add a concept index
462 move discussion of cygwin32, etags, mkid under other gnu tools
464 CCLD, CXXLD, FLD
466 ================================================================
468 Libraries:
470 * Should support standalone library along with subdir library in same
471   Makefile.am.  Maybe: turn off "standalone" mode if library's Makefile.am
472   is not only one specd? [ add an option for this ]
474 ================================================================
476 Longer term:
478 Would it be useful to integrate in some way with the Debian package
479 building utility?  Must check.  maybe it would be possible to deal
480 with all the different package utilities somehow.  Lately I've been
481 hearing good things about the RedHat packaging utilities.  Why are
482 there so many of these?  Are they fun to write or something?
483 The RedHat package utility is called RPM; see
484         ftp://ftp.redhat.com/pub/code/rpm
485 It actually has problems, like no configure script and no documentation.
487 For Cygnus it would probably be good to be able to handle the native
488 package utility on each platform.  There are probably 3 or 4 of these
489 (sysv, solaris?, aix?)
491 tcl/unix/Makefile.in has some code to generate a Solaris package.
493 Automake probably can't do all of this on its own.  A new tool might
494 be a better idea
496 I have some notes from a Debian developer on how the integration
497 should work
499 ================================================================
501 A tool to guess what the local Makefile.am should look like:
502 (see Gord's Maint program!)
504 * Probably integrate with autoscan
505 * Use various simple rules to determine what to do:
506   * get name of top directory, sans version info
507   * search for .c files with 'main' in them
508     * if in main.c, use directory name for program
509     * if in more than one, generate multiple programs
510     * if not found, generate a library named after directory
511   * order subdir searches correctly: lib first, src last
512   * assume 'testsuite' dir means we are using dejagnu
513 * maybe be smart about reading existing Makefile.am, so tool
514   can be run for incremental changes?  You could imagine:
516         Makefile.am:
517                 autoproject --incremental
519 ================================================================
521 Stuff NOT to do, and why:
523 consider auto-including any file that matches "*.in".
524   [ no: po/Makefile.in shouldn't be included ]
526 must look at mkid to see how it works (for subdir usage)
527   [ right now, it doesn't.  i don't see a simple fix right now ]
529 if configure.in not found, move up a directory and try again?  This
530 could eliminate a common source of problems.
531   [ this is just a bad idea ]
533 * scripts are installed in $exec_prefix/bin, not $prefix/bin
534   Bug or feature?
535   [ the consensus on Gnits is that this isn't required.
536     doubters can work around it anyway ]
538 Scan source directories and warn about missing files, eg .c/.h files
539 that aren't mentioned?
540   [ distcheck makes this less useful ]
542 * quoting bugs
543   - how to install file with a space in its name?
544   [ don't bother with this -- make is just too losing ]
546 * notice when a .c file is a target somewhere, and auto-add it to
547     BUILT_SOURCES
548   [ BUILT_SOURCES are for files that need to be built before anything
549     else because of hidden dependencies (something .c files are
550     unlikely to be) ]
552 * Scan multiple input files when Makefile is generated?
553   This would provide flexibility for large projects; subsumes
554   the "Makefile.tmpl" idea
555  [ can't do this.  must explain why in manual.
556    basically, solving all the problems is too hard
557    like: how to remove redundancies between generated .in files
558    instead should implement `include' directive for Makefile.am ]
560 * Should be a way to have "nobuild_PROGRAMS" which aren't even built,
561   but which could be by running the magic make command.
562   [ We already have EXTRA_PROGRAMS for this. ]
565 * copyright notice
567 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free
568 Software Foundation, Inc.
570 This file is part of GNU Automake.
572 GNU Automake is free software; you can redistribute it and/or modify
573 it under the terms of the GNU General Public License as published by
574 the Free Software Foundation; either version 2, or (at your option)
575 any later version.
577 GNU Automake is distributed in the hope that it will be useful,
578 but WITHOUT ANY WARRANTY; without even the implied warranty of
579 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
580 GNU General Public License for more details.
582 You should have received a copy of the GNU General Public License
583 along with autoconf; see the file COPYING.  If not, write to
584 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
585 Boston, MA 02111-1307, USA.
588 Local Variables:
589 mode: outline
590 End: