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