source: trunk/essentials/sys-devel/automake-1.8/TODO@ 3275

Last change on this file since 3275 was 3118, checked in by bird, 18 years ago

automake 1.8.5

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