1 Priorities for release:
2 !! documentation (eg new macros)
7 * copyrights on m4 files, aclocal output
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.
13 * must split $obj into two parts: one for libtool and one for
14 deansification. Otherwise .S files will be deansified!
16 * look @ jim's $(t:=foo) problem
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.
21 * compatibility with older versions of autoconf if not --gnu
23 ================================================================
25 * CONFIG_HEADER is passed incorrectly in ":" mode.
27 * put parser.h into distribution if "yacc -d" is used
29 * only remove libtool at top level?
31 * clean up source directory by moving stuff into subdirs
33 * consider adding pkglibexecdir, maybe others?
34 requests for pkg-dirs with version included
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.
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
49 - consider adding "echo"s to installs again.
50 users can use make SHELL='sh -x' to get the full dirt
52 Avoid loops when installing; instead unroll them in automake
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
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.
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.
73 consider putting all check-* targets onto @check?
74 To support --help/--version checking?
76 take diff-n-query code from libit
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.
86 Per> SUFFIXES = .class .java
87 Per> and a suffix rule of the form:
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.
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)
98 * actually use acinstall program
100 !! Must fix require_file stuff. It is really gross, and I don't
101 understand it any more.
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?
109 !! should write autoconf-style doc entries for each m4 macro
111 Jim's idea: should look for @setfilename and warn if filenames too long
113 * allow ".info" to be missing
115 * must update GNU Hello
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.
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.
127 Configuring in the large:
128 * allow hierarchy of dirs to share one aclocal.m4
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
135 From the GNU Standards. These things could be checked, and probably
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
141 * Don't include any symbolic links in the distribution itself.
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?
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
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.
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 ]
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
175 ... what about other options here too?
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.
180 Consider: "cvs" option adds some cvs-specific rules?
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
187 [ this will be harder to implement when scanning a rule like all-recursive
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.
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
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
207 djm wants ``LINKS'' variable; list of things to link together after
208 install. In BSD environment, use:
209 LINKS = from1 to1 from2 to2 ...
211 Need way to say there are no suffixes in a Makefile (Franc,ois'
212 "override" idea suffices here)
214 Check to make sure various scripts are executable (IE when looking for
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
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"
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...
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? ]
238 uninstall and pkg-dirs should rm -rf the dir.
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 ]
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.
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)
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:
264 for yacc and lex source
265 * allow generating c++ source from lex? Eg using flex?
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
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
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
290 Auto-distribute "ChangeLog.[0-9]+"? "ChangeLog.[a-z]+"?
292 Internationalize. [ gettext doesn't have the necessary machinery yet ]
293 am_error should use printf-style arguments (for eventual gettext scheme)
295 François says the ordering of files in a distribution should be as follows:
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.
303 Check all source files to make sure that FSF address is up-to-date.
304 --gnits or --gnu only.
306 Merge each -vars.am file with corresponding ".am" file. Can do this
307 because of changes to &file_contents.
309 Should libexec programs have the name transform done on them?
311 Order the output rules sensibly, so FOO_SOURCES and FOO_OBJECTS are
312 together and rules are in the usual order.
314 Make the output minimal: only output definitions for variables that
317 Look at dist's jmake for ideas. dist is the name of the distribution
318 including Metaconfig. Perl uses it.
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
326 . Consider supporting guile-style PLUGIN directories automatically?
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.
336 Karl> 2) Your Makefile variable names are generally uppercase, but GNU
337 Karl> generally uses lowercase. Not that it matters :-).
339 ================================================================
343 probably should put each group of m4 files into a subdir owned by the
344 containing application.
346 ================================================================
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
353 rationale for avoiding
354 make CFLAGS="$CFLAGS" ...
357 a package that installs its own aclocal macros
359 write example of using automake with dejagnu
360 follow calc example in dejagnu docs
362 document which variables are actually scanned and which are not.
364 Document customary ordering of Makefile.am. From François.
366 Should include extended version of diagram from Autoconf (suggested by
369 Make a definition of the term "source"
371 document how to use Automake with CVS. Idea from Mark Galassi. Also
372 include Greg Woods' more sophisticated "cvs-dist" target.
374 document rebuilding configure. CONFIGURE_DEPENDENCIES
376 _DEPENDENCIES -vs- _LIBADD/_LDADD; the tradeoffs
378 -- must document all variables that are supposed
379 to be public knowledge
381 automake must be run in each directory with a configure.in
382 This is insufficiently clear
384 must document the targets required for integration with
385 non-automake-using subdirs
387 use of (eg) EXTRA_PROGRAMS is not very clear right now
389 document EXTRA_foo_SOURCES
391 document why EXTRA_* vars must be statically knowable
393 document the "make SHELL='/bin/sh -x'" trick for debugging
395 section on relationship to GNU make
397 LDFLAGS; maybe why it is different from LIBADD/LDADD
399 document that dependencies:
401 * are system-dependent
405 ================================================================
407 Things to do for autoconf:
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
413 ================================================================
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 ]
421 ================================================================
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.
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?)
438 tcl/unix/Makefile.in has some code to generate a Solaris package.
440 Automake probably can't do all of this on its own. A new tool might
443 ================================================================
445 A tool to guess what the local Makefile.am should look like:
446 (see Gord's Maint program!)
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:
461 autoproject --incremental
463 ================================================================
465 Stuff NOT to do, and why:
467 consider auto-including any file that matches "*.in".
468 [ no: po/Makefile.in shouldn't be included ]
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 ]
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 ]
477 * scripts are installed in $exec_prefix/bin, not $prefix/bin
479 [ the consensus on Gnits is that this isn't required.
480 doubters can work around it anyway ]
482 * make the auto-dep code crash if GNU make not in use?
483 (doesn't it already?)
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. ]
495 Scan source directories and warn about missing files, eg .c/.h files
496 that aren't mentioned?
497 [ distcheck makes this less useful ]