scan aclocal.m4
[platform/upstream/automake.git] / TODO
1 Priorities for release:
2 !! documentation (eg new macros)
3 !! finish up TAGS work
4 * `acinstall'
5 * echo in installs?
6 * `missing' program
7 * copyrights on m4 files, aclocal output
8
9 For now I guess I'll just have automake give an error if it encounters
10 non-C source in a libtool library specification.
11
12
13 * must split $obj into two parts: one for libtool and one for
14   deansification.  Otherwise .S files will be deansified!
15
16 * look @ jim's $(t:=foo) problem
17
18 * should install-foo target for a new dir (eg fooexecdir) be run via
19   install-data or install-exec?  Consider examining name of variable.
20
21 * compatibility with older versions of autoconf if not --gnu
22
23 ================================================================
24
25 * CONFIG_HEADER is passed incorrectly in ":" mode.
26
27 * put parser.h into distribution if "yacc -d" is used
28
29 * only remove libtool at top level?
30
31 * clean up source directory by moving stuff into subdirs
32
33 * consider adding pkglibexecdir, maybe others?
34   requests for pkg-dirs with version included
35
36 Fix ansi2knr so that knr-style function decls aren't incorrectly
37 rewritten.  Or, fix automake so that not all sources in a directory
38 must be ansi.  Should also fix things so that a separate ._o file is
39 not needed; instead use a wrapper script.
40
41 Gord on pretty-printing instead of raw loops:
42 Gord> I think the best thing to do is to have make output be a valid shell
43 Gord> script, and to have it be clear exactly what is happening at a given
44 Gord> time.
45
46
47 Further:
48 - man page fixes
49 - consider adding "echo"s to installs again.
50   users can use make SHELL='sh -x' to get the full dirt
51
52 Avoid loops when installing; instead unroll them in automake
53
54 * for new autoconf:
55   * completely handle multi-":" mode for AC_CONFIG_HEADER
56   * Scan multiple input files when Makefile is generated?
57     This would provide flexibility for large projects; subsumes
58     the "Makefile.tmpl" idea
59
60    [ can't do this.  must explain why in manual.
61      basically, solving all the problems is too hard
62      like: how to remove redundancies between generated .in files
63      instead should implement `include' directive for Makefile.am ]
64 * for multi-":" mode and AC_OUTPUT, it might be good to pick the
65   first input file that has a corresponding .am file.
66
67 Some long-term projects:
68 * if $(FOO) is used somewhere, ensure FOO is defined, either by
69   user or by automake if possible
70 * Don't rearrange order of `include' lines relative to += assignments.
71 * Handle += assignments at all.
72
73 consider putting all check-* targets onto @check?
74 To support --help/--version checking?
75
76 take diff-n-query code from libit
77
78 Per Bothner says:
79 Per> 1) Being able to build a set of non-source programs
80 Per> from source programs, without necessarily linking them together.
81 Per> I.e. one should be able to say something like:
82 Per>    dummy_SOURCES=foo.c bar.c
83 Per> and automake should realize that it needs to build foo.o and bar.o.
84 Per> 2) Being intelligent about new kinds of suffixes.
85 Per> If it sees:
86 Per>    SUFFIXES = .class .java
87 Per> and a suffix rule of the form:
88 Per>    .java.class:
89 Per> then it should be able to realize it can build .class files from
90 Per> .java files, and thus be able to generate a list of
91 Per> .class files from a list of .java source files.
92
93 From Jason Molenda:
94 * allow a way to use "gzip --best"
95    [ Try  GZIP=--best make dist ]
96 * don't assume GNU tar is "tar" (eg in distcheck)
97
98 * actually use acinstall program
99
100 !! Must fix require_file stuff.  It is really gross, and I don't
101    understand it any more.
102
103 * error messages should print ``[info blah blah]'' command when a
104   certain part of the standards apply.  saw idea in message from
105   Craig Burley.  wouldn't it be really cool if compile-mode in Emacs
106   understood this convention, and you could click on such text to
107   go to the appropriate info page?
108
109 !! should write autoconf-style doc entries for each m4 macro
110
111 Jim's idea: should look for @setfilename and warn if filenames too long
112 * guess split size
113 * allow ".info" to be missing
114
115 * must update GNU Hello
116
117 ** many requests for a way to omit a file from the distribution.
118    Should be done like `!foo' or `~foo' in _SOURCES, etc.
119    Such files should be removed explicitly after the copy step!
120    Doing this requires rewriting macros before generating Makefile.in.
121
122 from joerg-martin schwarz:
123  -- If Makefile.am contains $(CC), $(COMPILE), $(YLWRAP), .... 
124     in an explicitly written rule,  you should emit the corresponding
125     Makefile variables automatically.
126
127 Configuring in the large:
128 * allow hierarchy of dirs to share one aclocal.m4
129   How?
130
131 consider printing full file name of Makefile.am or configure.in when
132 giving error.  This would help for very large trees with many
133 configure.in scripts
134
135 From the GNU Standards.  These things could be checked, and probably
136 should be if --gnu.
137 *    Make sure that the directory into which the distribution unpacks (as
138 well as any subdirectories) are all world-writable (octal mode 777).
139 *   Make sure that no file name in the distribution is more than 14
140 characters long.
141 *    Don't include any symbolic links in the distribution itself.
142      (ditto hard links)
143 *    Make sure that all the files in the distribution are world-readable.
144 ** also, check --help output and --version output.  Idea from François
145 * standards no longer prohibit ANSI C.  What does this imply
146   for the de-ansi-fication feature?
147
148 consider supporting "var+= stuff" syntax.  rewrite to just var=... on
149 output.  This is sometimes convenient when you want to write a
150 Makefile.am in more-or-less modular parts
151
152 should be able to determine what is built by looking at rules (and
153 configure.in).  Then built man pages (eg) could automatically be
154 omitted from the distribution.
155
156 Idea from Joerg-Martin Schwarz: allow passing different -D flags to
157 different compiles.  This can be done, but with the restriction that a
158 .c cannot appear in 2 different "objects" (programs/libraries)
159 compiled with different -D options (because -c and -o do not always
160 work together and parallel makes must work).  This could be
161 implemented by noticing whenever a ".o" target with no rules is being
162 emitted, and adding the appropriate compilation rule as appropriate.
163 This should work with targets from Makefile.am as well as from .P
164 files, which means rewriting so that the Makefile.am contents aren't
165 copied into the output immediately.  This feature is probably required
166 to fully support libtool ("grody compilation issue")
167  [ this could be probably done more directly by examining the sources
168    as we scan Makefile.am ]
169
170 Henrik Frystyk Nielsen says:
171 Henrik> 4) Flags like --include-deps are lost when you make changes to
172 Henrik> Makefile.am files and automake is run automatically. It would
173 Henrik> be nice to keep these flags as I now have to redo everything
174 Henrik> manually.
175 ... what about other options here too?
176
177 Think about: maybe "make check" should just bomb if error occurs?
178 Then user must use "make -k check".  This is probably more natural.
179
180 Consider: "cvs" option adds some cvs-specific rules?
181
182 Right now, targets generated internally (eg "install") are not
183 overridable by user code.  This should probably be possible, even
184 though it isn't very important.  This could be done by generating all
185 internal rules via a function call instead of just appending to
186 $output_rules.
187  [ this will be harder to implement when scanning a rule like all-recursive
188    from subdirs.am ]
189
190 * Should be a way to have "nobuild_PROGRAMS" which aren't even built,
191   but which could be by running the magic make command.
192
193 Other priorities:
194 * Must rewrite am_install_var.  Should break into multiple functions.
195   This will allow the callers to be a little smarter.
196 * Rewrite clean targets.
197 * Must rewrite error handling code.  Right now it is a real mess
198   Should fix up require_file junk at the same time
199
200 Things to finish libtool support:
201 * Handle grody compilation issue
202   Namely: some objects require a different compilation rule
203 * Handle install changes
204 * Handle clean changes
205 * New definition for LINK
206
207 djm wants ``LINKS'' variable; list of things to link together after
208 install.  In BSD environment, use:
209         LINKS = from1 to1 from2 to2 ...
210
211 Need way to say there are no suffixes in a Makefile (Franc,ois'
212 "override" idea suffices here)
213
214 Check to make sure various scripts are executable (IE when looking for
215 them in a directory)
216
217 Use recode in dist target when MAINT_CHARSET specified.  Read caveats
218 in automake.in before doing this.  Note the same problem used to apply
219 to the no-dependencies option; maybe it still should?  Note also that
220 each Makefile.am must be rewritten at "make dist" time if
221 MAINT_CHARSET and DIST_CHARSET are not identical.  NOTE: gettext must
222 arrange for all .po files not to be recoded.  In the long term this
223 might be a problem (consider when some systems use Unicode but the
224 rest do not)
225   MAINT_CHARSET *must* be local to each Makefile.am, to enable
226         merged distributions.
227   DIST_CHARSET must be passed down to subdir makes during a "make dist"
228
229 Handle dist-zoo.  Generally add more DOS support.  Maybe run "doschk"
230 (why isn't this merged with "pathchk"?) when doing a dist.  Do
231 whatever else François says here...
232
233 Add support for html via an option.  Use texi2html.  Use
234 "html_TEXINFOS", and htmldir = .../html.  Include html files in
235 distribution.  Also allow "html_DATA", for raw .html files.
236   [ when will texinfo directly support html? ]
237
238 uninstall and pkg-dirs should rm -rf the dir.
239
240 a potential bug: configure puts "blah.o" into LIBOBJS, thus implying
241 these files can't be de-ansified.  Not a problem?
242   [ fix by using ansi2knr wrapper program ]
243
244 In general most .am files should be merged into automake.  For
245 instance all the "clean" targets could be merged by keeping lists of
246 things to be removed.  This would be a lot nicer looking.  Note that
247 the install targets probably should not be merged; it is sometimes
248 useful to only install a small part.
249
250 Clean up the output:
251 * Order rules sensibly
252 * Ensure every line has a purpose.  Omit unused stuff
253 * Eliminate extraneous rules when possible (eg 'install-am' stuff)
254 * Make sure vertical spacing is correct
255 Omit program transform vars from header if no program installed.  This
256 is currently pretty hard to do.  (But with beautification code it
257 would probably be easy)
258
259 Lex, yacc support:
260 * It would be nice to automatically support using bison's better features
261   to rename the output files.  This requires autoconf support
262 * Consider supporting syntax from autoconf "derived:source", eg:
263         y.tab.c:perly.y
264   for yacc and lex source
265 * allow generating c++ source from lex?  Eg using flex?
266
267 Multi-language support:
268 * should have mapping of file extensions to languages
269 * should automatically handle the linking issue (special-case C++)
270 * must get compile rules for various languages; FORTRAN probably
271   most important unimplemented language
272 This should be integrated in some way with Per's idea.
273 Eg .f.o rules should be recognized & auto-handled in _SOURCES
274 That way any random language can be treated with C/C++ on a first-class
275 basis (maybe)
276
277 It might be cool to generate .texi dependencies by grepping for
278 @include.  (If done, it should be done the same way C dependencies are
279 done)
280
281 It would be good to check some parts of GNU standards.  Already check
282 for install-sh and mkinstalldirs.  What else is required to be in
283 package by GNU standards or by automake?
284 Some things for --strictness=gnits:
285 * "cd $(foo); something" is an error in a rule.  Should be:
286   "cd $(foo) && something"
287 * Look for 'ln -s' and warn about using $(LN) and AC_PROG_LN_S
288 * Look for $(LN) and require AC_PROG_LN_S
289
290 Auto-distribute "ChangeLog.[0-9]+"?  "ChangeLog.[a-z]+"?
291
292 Internationalize. [ gettext doesn't have the necessary machinery yet ]
293 am_error should use printf-style arguments (for eventual gettext scheme)
294
295 François says the ordering of files in a distribution should be as follows:
296 * README
297 * source files
298 * derived files
299 I agree, but I don't see how to implement this yet.
300 It might be easier if "derived files" is limited to those that
301 Automake itself knows about, eg output of yacc.
302
303 Check all source files to make sure that FSF address is up-to-date.
304 --gnits or --gnu only.
305
306 Merge each -vars.am file with corresponding ".am" file.  Can do this
307 because of changes to &file_contents.
308
309 Should libexec programs have the name transform done on them?
310
311 Order the output rules sensibly, so FOO_SOURCES and FOO_OBJECTS are
312 together and rules are in the usual order.
313
314 Make the output minimal: only output definitions for variables that
315 are used.
316
317 Look at dist's jmake for ideas.  dist is the name of the distribution
318 including Metaconfig.  Perl uses it.
319
320 Should handle directory hierarchies deeper than 2.  Right now there is
321 some support for this.  Here are some of the issues:
322 * Should handle AC_CONFIG_SUBDIRS, ie must handle configure.in in subdirs
323     * can do this by looking at subdirs, seeing configure.in
324       and auto-running Automake there
325
326 . Consider supporting guile-style PLUGIN directories automatically?
327
328 djm says:
329 David> To avoid comments like the one about subdirs getting buried in
330 David> the middle of a Makefile.in, how about pushing comments that
331 David> start with ### to the top of the Makefile.in (in order)?  Sort
332 David> of like how Autoconf uses diversions to force initialization
333 David> code to the top of configure.
334
335 Karl Berry says:
336 Karl> 2) Your Makefile variable names are generally uppercase, but GNU
337 Karl> generally uses lowercase. Not that it matters :-).
338
339 ================================================================
340
341 Stuff for aclocal:
342
343 probably should put each group of m4 files into a subdir owned by the
344 containing application.
345
346 ================================================================
347
348 Document:
349
350 multi-":" mode in AC_OUTPUT -- automake only looks at the first file
351     also a note on how a .am file is found in this case
352
353 rationale for avoiding
354         make CFLAGS="$CFLAGS" ...
355 in subdirs make rule
356
357 a package that installs its own aclocal macros
358
359 write example of using automake with dejagnu
360 follow calc example in dejagnu docs
361
362 document which variables are actually scanned and which are not.
363
364 Document customary ordering of Makefile.am.  From François.
365
366 Should include extended version of diagram from Autoconf (suggested by
367 Greg Woods)
368
369 Make a definition of the term "source"
370
371 document how to use Automake with CVS.  Idea from Mark Galassi.  Also
372 include Greg Woods' more sophisticated "cvs-dist" target.
373
374 document rebuilding configure.  CONFIGURE_DEPENDENCIES
375
376 _DEPENDENCIES -vs- _LIBADD/_LDADD; the tradeoffs
377
378 -- must document all variables that are supposed
379    to be public knowledge
380
381 automake must be run in each directory with a configure.in
382 This is insufficiently clear
383
384 must document the targets required for integration with
385 non-automake-using subdirs
386
387 use of (eg) EXTRA_PROGRAMS is not very clear right now
388
389 document EXTRA_foo_SOURCES
390
391 document why EXTRA_* vars must be statically knowable
392
393 document the "make SHELL='/bin/sh -x'" trick for debugging
394
395 section on relationship to GNU make
396
397 LDFLAGS; maybe why it is different from LIBADD/LDADD
398
399 document that dependencies:
400 * are put into .deps
401 * are system-dependent
402
403 add a concept index
404
405 ================================================================
406
407 Things to do for autoconf:
408
409 * patch autoreconf to run automake and aclocal.  I've done this but it is
410   not really available.  It can't be made available until automake
411   is officially released
412
413 ================================================================
414
415 Libraries:
416
417 * Should support standalone library along with subdir library in same
418   Makefile.am.  Maybe: turn off "standalone" mode if library's Makefile.am
419   is not only one specd? [ add an option for this ]
420
421 ================================================================
422
423 Longer term:
424
425 Would it be useful to integrate in some way with the Debian package
426 building utility?  Must check.  maybe it would be possible to deal
427 with all the different package utilities somehow.  Lately I've been
428 hearing good things about the RedHat packaging utilities.  Why are
429 there so many of these?  Are they fun to write or something?
430 The RedHat package utility is called RPM; see
431         ftp://ftp.redhat.com/pub/code/rpm
432 It actually has problems, like no configure script and no documentation.
433
434 For Cygnus it would probably be good to be able to handle the native
435 package utility on each platform.  There are probably 3 or 4 of these
436 (sysv, solaris?, aix?)
437
438 tcl/unix/Makefile.in has some code to generate a Solaris package.
439
440 Automake probably can't do all of this on its own.  A new tool might
441 be a better idea
442
443 ================================================================
444
445 A tool to guess what the local Makefile.am should look like:
446 (see Gord's Maint program!)
447
448 * Probably integrate with autoscan
449 * Use various simple rules to determine what to do:
450   * get name of top directory, sans version info
451   * search for .c files with 'main' in them
452     * if in main.c, use directory name for program
453     * if in more than one, generate multiple programs
454     * if not found, generate a library named after directory
455   * order subdir searches correctly: lib first, src last
456   * assume 'testsuite' dir means we are using dejagnu
457 * maybe be smart about reading existing Makefile.am, so tool
458   can be run for incremental changes?  You could imagine:
459
460         Makefile.am:
461                 autoproject --incremental
462
463 ================================================================
464
465 Stuff NOT to do, and why:
466
467 consider auto-including any file that matches "*.in".
468   [ no: po/Makefile.in shouldn't be included ]
469
470 must look at mkid to see how it works (for subdir usage)
471   [ right now, it doesn't.  i don't see a simple fix right now ]
472
473 if configure.in not found, move up a directory and try again?  This
474 could eliminate a common source of problems.
475   [ this is just a bad idea ]
476
477 * scripts are installed in $exec_prefix/bin, not $prefix/bin
478   Bug or feature?
479   [ the consensus on Gnits is that this isn't required.
480     doubters can work around it anyway ]
481
482 * make the auto-dep code crash if GNU make not in use?
483   (doesn't it already?)
484
485 Looked at a program called 'ezmake', which seems to do something
486 similar.  The only idea there that is possibly worth stealing is using
487 globs in definitions.  Also has negations.  Eg in a directory with
488 files a.c, b.c and c.c, the line:
489         foo_SOURCES = *.c ~c.c
490 would be equivalent to:
491         foo_SOURCES = a.c b.c
492 Is this worth implementing?
493   [ No... it is more reliable to spell everything out. ]
494
495 Scan source directories and warn about missing files, eg .c/.h files
496 that aren't mentioned?
497   [ distcheck makes this less useful ]