Bug fixes
[automake.git] / TODO
blob1bcfbd5ef18f2037d1fffed6d199cf95dfbd7c75
1 Priorities for release:
2 * Check all require_file errors to see if any should reference a line in
3   Makefile.am or configure.in.  [handle_configure does]
4 * Error if program name not acceptable as makefile variable name
5 * Add prog_CFLAGS
7 Franc,ois> * Do you speak somewhere of the capability Automake has to let
8 Franc,ois> the user overrides definitions and goals?  I think this is useful,
9 Franc,ois> at times.  I think the "When Automake Isn't Enough" node needs to
10 Franc,ois> be revisited, as it says false things.
12 Franc,ois> * You might say a word about comment processing, double
13 Franc,ois> hash removing, and copying of a possible copyright block at
14 Franc,ois> beginning of Makefile.am.
16 Franc,ois> * The manual should tell about the fact the automake program, when
17 Franc,ois> used for a single subdirectory, should be run from the top level,
18 Franc,ois> with something like an explicit DIR/Makefile argument.
20 * look at ``'' issues in docs.  and look for 'definition' pragma
22 Other priorities:
23 * Must rewrite am_install_var.  Should break into multiple functions.
24   This will allow the callers to be a little smarter.
25 * Rewrite clean targets.
26 * Expand test suite.
28 >>>>> "JMS" == Joerg-Martin Schwarz <jms@jms.prima.ruhr.de> writes:
29 JMS> make dist requires that automake be installed, even if the
30 JMS> current Makefile.in already includes all dependency files.  This
31 JMS> way one cannot re-create the tar file from the extracted source
32 JMS> file tree.
34 Consider allowing mkinstalldirs, mdate-sh, and others to be put in
35 AC_CONFIG_AUX_DIR.  Maybe even ansi2knr?
37 Testing: allow support for Cygnus-style dejagnu-based test suites via
38 an option
40 when in subdir that itself has subdirs, might need to do
41 include-by-reference TAGS file.
43 Think about ways to make automake fit better with Cygnus-style trees.
45 Use recode in dist target when MAIN_CHARSET specified.  Read caveats
46 in automake.in before doing this.  Note the same problem used to apply
47 to the no-dependencies option; maybe it still should?  Note also that
48 each Makefile.am must be rewritten at "make dist" time if
49 MAINT_CHARSET and DIST_CHARSET are not identical.  NOTE: gettext must
50 arrange for all .po files not to be recoded.  In the long term this
51 might be a problem (consider when some systems use Unicode but the
52 rest do not)
54 Handle dist-zoo and dist-zip.  Generally add more DOS support.  Maybe
55 run "doschk" (why isn't this merged with "pathchk"?) when doing a
56 dist.  Do whatever else François says here...
58 Add support for html via an option.  Use texi2html.  Use
59 "html_TEXINFOS", and htmldir = .../html.  Include html files in
60 distribution.  Also allow "html_DATA", for raw .html files.
61   [ when will texinfo support html? ]
63 if configure.in not found, move up a directory and try again?  This
64 could eliminate a common source of problems.
66 uninstall and pkg-dirs should rm -rf the dir.
68 a potential bug: configure puts "blah.o" into LIBOBJS, thus implying
69 these files can't be de-ansified.  Not a problem?
71 In general most .am files should be merged into automake.  For
72 instance all the "clean" targets could be merged by keeping lists of
73 things to be removed.  This would be a lot nicer looking.  Note that
74 the install targets probably should not be merged; it is sometimes
75 useful to only install a small part.
77 Clean up the output:
78 * Order rules sensibly
79 * Ensure every line has a purpose.  Omit unused stuff
80 * Eliminate extraneous rules when possible (eg 'install-am' stuff)
81 * Make sure vertical spacing is correct
82 * pretty-print targets
83 * regularize how backslash-newline is done.  Just one space between text
84   and backslash should be the rule.  Update makefile-mode to allow this.
85   (set column to 0, probably)
87 It should be possible to have ansi2knr in just one place in a package.
88 Jim Meyering says just rely on configure to make links as appropriate.
89 Maybe introduce syntax like this:
90         AUTOMAKE_OPTIONS = ../ansi2knr
93 Lex, yacc support:
94 * It would be nice to automatically support using bison's better features
95   to rename the output files.  This requires autoconf support
96 * Consider supporting syntax from autoconf "derived:source", eg:
97         y.tab.c:perly.y
98   for yacc and lex source
99 * if AC_PROG_LEX used, ensure LEXLIB is in foo_LDADD
100 * require AC_DECL_YYTEXT for lex
102 require AC_PROG_CXX if any C++ source files found?
103 Better support for C++ all around
105 Write autoconf macro to do all work necessary for automake.  Eg define
106 PACKAGE, VERSION, etc.
108 'maintainer-clean' should "rm -rf .deps".  Ditto distclean
109 Should look for clean-local targets in Makefile.am.
111 It might be cool to generate .texi dependencies by grepping for
112 @include.  (If done, it should be done the same way C dependencies are
113 done)
115 It would be good to check some parts of GNU standards.  Already check
116 for install-sh and mkinstalldirs.  What else is required to be in
117 package by GNU standards or by automake?
118 Some things for --strictness=gnits:
119 * "cd $(foo); something" is an error in a rule.  Should be:
120   "cd $(foo) && something"
121 * Look for 'ln -s' and warn about using $(LN) and AC_PROG_LN_S
122 * Look for $(LN) and require AC_PROG_LN_S
124 automake.in: should ".cc" really -> "$o"?  This doesn't really seem
125 right, but maybe it is so names can be rewritten uniformly?  Must
126 check
128 Auto-distribute "ChangeLog.[0-9]+"?  "ChangeLog.[a-z]+"?
130 Internationalize. [ gettext doesn't have the necessary machinery yet ]
131 am_error should use printf-style arguments (for eventual gettext scheme)
133 François says the ordering of files in a distribution should be as follows:
134 * README
135 * source files
136 * derived files
137 I agree, but I don't see how to implement this yet.
138 It might be easier if "derived files" is limited to those that
139 Automake itself knows about, eg output of yacc.
141 Should COPYING.LIB be distributed?
143 Check all source files to make sure that FSF address is up-to-date.
144 --gnits or --gnu only.
146 Merge each -vars.am file with corresponding ".am" file.  Can do this
147 because of changes to &file_contents.
149 Looked at a program called 'ezmake', which seems to do something
150 similar.  The only idea there that is possibly worth stealing is using
151 globs in definitions.  Also has negations.  Eg in a directory with
152 files a.c, b.c and c.c, the line:
153         foo_SOURCES = *.c ~c.c
154 would be equivalent to:
155         foo_SOURCES = a.c b.c
156 Is this worth implementing?
158 Should libexec programs have the name transform done on them?
160 Order the output rules sensibly, so FOO_SOURCES and FOO_OBJECTS are
161 together and rules are in the usual order.
163 Make the output minimal: only output definitions for variables that
164 are used.
166 Look at dist's jmake for ideas.  dist is the name of the distribution
167 including Metaconfig.  Perl uses it.
169 Should handle directory hierarchies deeper than 2.  Right now there is
170 some support for this.  Here are some of the issues:
171 * Should handle AC_CONFIG_SUBDIRS, ie must handle configure.in in subdirs
172 * Must handle SUBDIRS in subdir Makefile.am's
173 * Must handle AC_CONFIG_AUX_DIR
174   * FIXME must already look in .. and ../..
176 ================================================================
178 Document:
181 Defined variables, their meanings, and their effects:
183 DEFS           cpp definitions
184 INCLUDES       -I options to cpp
185 CPPFLAGS       more cpp flags
186 CFLAGS         flags to cc
187 COMPILE        how to compile a C program
188 LINK           how to link a C program
190 DIST_SUBDIRS   directories which are copied verbatim into the
191                distribution.  Used eg for directories holding
192                only example code (which don't have their own
193                makefile).  This variable might be a bad idea.
195 Document customary ordering of Makefile.am.  From François.
197 Must document BUILT_SOURCES variable.  See depend.am.
199 Should include extended version of diagram from Autoconf (suggested by
200 Greg Woods)
202 must document check, install-info targets
204 ================================================================
206 Libraries:
208 * Should support standalone library along with subdir library in same
209   Makefile.am.  Maybe: turn off "standalone" mode if library's Makefile.am
210   is not only one specd? [ add an option for this ]
211 * Need a way to handle shared libraries.
212   It would be really interesting to be able to easily (as the end-user)
213   make many different versions of the library: shared, static, profiling,
214   debug, optimized...
215   How does Perl handle this?  How does glibc handle this?
216   This needs autoconf support
218 Some examples to keep in mind while doing this:
219 * readline
220 * kpathsea
222 ================================================================
224 Have a program that generates a Makefile on stdout, passes it through
225 a "config.status"-style filter, and thence into make.  Why bother,
226 other than the gee-whiz factor?
228 Would it be useful to integrate in some way with the Debian package
229 building utility?  Must check.  maybe it would be possible to deal
230 with all the different package utilities somehow.
232 ================================================================
234 A tool to guess what the local Makefile.am should look like:
236 * Probably integrate with autoscan
237 * Use various simple rules to determine what to do:
238   * get name of top directory, sans version info
239   * search for .c files with 'main' in them
240     * if in main.c, use directory name for program
241     * if in more than one, generate multiple programs
242     * if not found, generate a library named after directory
243   * order subdir searches correctly: lib first, src last
244   * assume 'testsuite' dir means we are using dejagnu
245 * maybe be smart about reading existing Makefile.am, so tool
246   can be run for incremental changes?  You could imagine:
248         Makefile.am:
249                 autoproject --incremental
251 ================================================================
253 Stuff NOT to do, and why:
255 consider auto-including any file that matches "*.in".
256   [ no: po/Makefile.in shouldn't be included ]
258 must look at mkid to see how it works (for subdir usage)
259   [ right now, it doesn't.  i don't see a simple fix right now ]