* Makefile.am (XFAIL_TESTS): Removed remake3.test,
[automake.git] / TODO
blobaaa4f5cd551d1ec5392355f2b89b1b3f44b1a80f
1 we need a document describing automake from the end user's point of view
2 eg describe INSTALL_HEADER there, among other things
4 * maintainer-clean
6 Akim:
7 > @@ -31,5 +31,9 @@
8 >  DISTCLEAN    -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
10 >  maintainer-clean-generic:
11 > +## FIXME: shouldn't we really print these messages before running
12 > +## the dependencies?
13 > +     @echo "This command is intended for maintainers to use"
14 > +     @echo "it deletes files that may require special tools to rebuild."
15 >         -rm -f Makefile.in
17 Tom:
18 > I'd like to eventually fix the FIXME comment by having
19 > maintainer-clean look like:
21 >     maintainer-clean:
22 >         @echo ...
23 >         $(MAKE) whatever
25 > We're left with the question of whether we should repeat them in every
26 > subdir.
29     Alexandre Oliva:
30     > Hmm...  Interesting.  It must have been a side effect of the enabling
31     > of forced `relink' on GNU/Linux/x86.  Anyway, on platforms that
32     > actually require relinking, this problem remains, and I see no way to
33     > overcome it other than arranging for automake to install libraries
34     > before executables, as you suggest.  This shouldn't be a big problem,
35     > anyway.
36     >
37     > A bigger problem could show up if two libraries in the same directory,
38     > one dependent on the other, are installed concurrently.  If relinking
39     > is needed for the dependent library, we have a problem.  It appears to
40     > me that user will have to live without `make -j install', in this
41     > case.
43     Alex Hornby
44     > Here's an Automake patch and changelog entry allow make -j install on
45     > such degenerate systems (and Linux with buggy libtool <g>)
46     >
47     > If you install to locations other that bin_ and lib_ then a larger fix
48     > is necessary, but this should fix the 90% case.
50 * in depend2.am, in specialization case, what if @SOURCE@ is found
51   in srcdir?  We can't depend on $<!  We must search explicitly.
52   this is a very serious problem!
53   one solution would be to make built-source handling smarter and
54   a bit more strict.  For instance require that built sources
55   have an associated target.  In this case we must also handle suffix
56   rules and the like.
58 * Document why putting @FOO@ in _SOURCES doesn't work.
59   This must be done for 1.5
61 * think about how per-object flags should work.  in particular:
62   * how should they be specified?
63     using the object name is confusing when .lo/.obj in use
64     however, the object name provides a nice interaction with
65     per-exe flags
66   * how should they interact with per-executable flags?
68 * cross-compilation support:
69   programs built and used by the build process need to be
70   built for CC_FOR_BUILD
71   introduce a new variable for this
72   [ we can do this in an automatic way I think.
73     unfortunately it isn't that useful until autoconf has support
74     for this sort of thing as well ]
76 * distcheck should make sure that each file that uses _() is
77   listed in POTFILES.in
78   From Jim Meyering:
79     # Verify that all source files using _() are listed in po/POTFILES.in.
80     po-check:
81             grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1
82             grep -E -l '\b_\(' lib/*.c src/*.c | sort > $@-2
83             diff -u $@-1 $@-2
84             rm -f $@-1 $@-2
86 * support prog_LIBS as override for LIBS
88 * Scan configure.in using the same trick that autoheader uses.
89   This will be much more reliable.
91 * Test subdir-objects option with yacc, lex, ansi2knr
92   Our locking scheme won't prevent a parallel make from losing
93   if there are two `bar.o' files and the timing is just right
94   This only happens with parallel make and no-`-c -o' compiler,
95   so it probably isn't very important
96   `-c -o' when doing libtool
97   try to find a losing compiler and see if it really works.
98   (actually: hack config.cache and do it)
100 * We're using `$<' in explicit rules when using per-exe flags
101   per-exe flags don't work for CPPFLAGS/YFLAGS/LFLAGS.  Fix.
102   LIBOBJS shouldn't be used when there are per-exe flags (?)
104 * Need a way to pass flags to makeinfo
105   esp --no-split
107 * test `make clean' with subdir-objects
109 * Test nodist_SOURCES with lex, yacc, etc.
111 * Support subdir-objects with fortran
113 * Allow creation of Java .zip/.jar files in natural way
114   If you are building a compiled Java library, then the .zip/.jar
115   ought to be made automatically.
117 * Run automake before libtool.  It will report an error but
118   still won't put the file into the disty.  This is wrong.
119   From Mark H Wilkinson <mhw@kremvax.demon.co.uk>
121 * CFLAGS only defined if C source seen
122   but really it should be a configure variable, shouldn't it?
123   There are other examples of this
124   [ moving to autoconf --trace ought to fix this ]
126 * in gnu/gnits mode, give error if Makefile.am overrides a user
127   variable like CFLAGS.
128   [ this is low priority because the package author can always
129     circumvent our check by redefining in configure.in
130     plus it is probably better to encourage good behavior than to
131     punish bad ]
133 * If we see `foo.o' in LIBOBJS, and we've seen AC_OBJEXT, then complain.
134   [ how will we know that?  it is better to handle this automatically
135     via an autoconf hook ]
137 * examine possibility of using any character in a macro name
138   and rewriting names automatically.  this means we must rewrite
139   all references as well.
140   [ this is a 2.0-style feature ]
142 * AM_CONFIG_HEADER might generate the wrong stamp file names
143   when given multiple headers.  Write a test.
145 * Currently don't correctly handle multiple inputs to a config header.
147 * header stamp files still in wrong dirs.
148   stamp-h.in must be in dir with h.in file
149   stamp-h must be in dir with output file
151 * foo=bar
152   if cond
153   foo += joe
154   endif
155   ... this ought to work.  The fix is probably complicated
157 * `distcheck' and `dist' should depend on `all'
159 * Add code to generate foo-config script like gnome, gtk
161 * `DEFS += foo' won't work.
162   That's because DEFS is defined in header-vars.am, which is read
163   after the user's Makefile.am.
164   This will be a problem for any macro defined internally
165     [ fixing this will probably fix the nasty `exeext redefines
166       foo_PROGRAMS' hack that is in there right now ]
167     [ we currently give an error when this occurs, so this is very low
168       priority ]
170 * document user namespace for macro/target names
171   adopt some conventions and use uniformly
172     [ this is a good thing for the rewrite ]
174 * make distcheck uses directories like `=build'.
175   Some (very rare) POSIX systems don't support `=' in filenames.
176   If this ever becomes a problem, fix it
178 * distclean must remove config.status
179   can't this cause problems for maintainer-clean?
180   shouldn't maintainer-clean print the message before running
181   any part of the make?  (just to slow things down long enough
182   for the user to stop it)
183   (maybe doesn't matter since people who even know about
184   maintainer-clean already have a clue)
186 * There are probably more bugs in variable_conditions_sub along
187   the lines of the one that caused cond4.test to fail.
189 * reintroduce AM_FUNC_FNMATCH which sets LIBOBJS
190   Then have automake know about fnmatch.h.
191     [ probably should wait for autoconf to get right functionality ]
193 * Allow per-object cflags:
194         bin_PROGRAMS = foo
195         foo_CFLAGS = -DFOO
196 * per-object compiler flags do not apply to libobjs
197   -> give error in this case
198 * At the same time, allow sources in subdirs:
199         foo_SOURCES = x/y.c
200   This requires `mkdir x' at build time
201  [ both of these require per-file rules, and not pattern rules ]
202  [ use user-written suffix rules to generate the per-file rules in
203    an automatic way -- this would be mucho cool ]
205 * Every program foo has FOOFLAGS right now.
206   It should also have AM_FOOFLAGS, which can be set in Makefile.am.
207 DONE: but needs to be documented
209 * "make diff" capability
210   look at gcc's Makefile.in to see what to do
211   or look at maint program
213 * BUILT_SOURCES should not be distributed, even when they appear in
214   another _SOURCES line. [? or maybe just leave this up to the
215   to-be-defined generic distribution method ]
216   must completely revisit the entire BUILT_SOURCES idea
218 * in --cygnus, clean-info not generated at top level
220 * what if an element of a scanned variable looks like
221         $(FOO).$(BAR)  ?
222   or some other arbitrary thing?
223   right now we try to cope, but not very well
224     [ this is only of theoretical interest for now ]
226 * make sure every variable that is used is also defined
227     [ we don't really look at variable uses in detail.
228       2.0 thing ]
230 * make sure `missing' defines are generated
231 * if no AM_INIT_AUTOMAKE, then don't handle `missing' stuff.
232   Yuck!
233 * missing should handle install -d and rmdir -p (for uninstall)
235 * a couple ways to be smarter:
236   - notice when a .c file is a target somewhere, and auto-add it to
237     BUILT_SOURCES
238   - notice a target of the form `.x.y:' and assume it is a suffix rule
240 * NORMAL_INSTALL / NORMAL_UNINSTALL -vs- recursive rules
241   [ requires changes to the standard ]
243 * copyrights on m4 files, aclocal output
245 * should not put texiname_TEXINFOS into distribution
246   should rename this macro anyway, to foo_texi_DEPENDENCIES
248 * *all* installed scripts should support --version, --help
250 For now I guess I'll just have automake give an error if it encounters
251 non-C source in a libtool library specification.
253 * must split $obj into two parts: one for libtool and one for
254   deansification.  Otherwise .S files will be deansified!
256 * ansi2knr must currently appear in a directory that has some source
258 * if program has the same name as a target, do something sensible:
259   - if the target is internal, rename it
260   - if the target is mandated (eg, "info"), tell the user
261     consider auto-modifying the program name to work around this
263 * should separate actual options from strictness levels
264   strictness should only cover requirements
265   You should be able to pick and choose options
267 should clean up texinfos.am; one rule is repeated 3 times, but
268 shouldn't be
270 should always use perl -w
272 rewrite in guile (RMS request)
273 at the same time, consider adding a GUI
274 could use the same parsing code for the GUI and the standalone version
275 that means figuring out a better representation of internal state
276 [ that's easy -- anything is better than what we have now ]
278 having just one Makefile for a project would give a big speed increase
279 for a project with many directories, eg glibc.  ideally (?) you'd
280 still be able to have a Makefile.am in each directory somehow; this
281 might make editing conceptually easier.
283 * finish up TAGS work
284 * `acinstall'
286 * only remove libtool at top level?
288 * clean up source directory by moving stuff into subdirs
290 * consider adding pkglibexecdir, maybe others?
291   requests for pkg-dirs with version included
293 Avoid loops when installing; instead unroll them in automake
295 * for new autoconf:
296   * completely handle multi-":" mode for AC_CONFIG_HEADER
297   * Scan multiple input files when Makefile is generated?
298     This would provide flexibility for large projects; subsumes
299     the "Makefile.tmpl" idea
301    [ can't do this.  must explain why in manual.
302      basically, solving all the problems is too hard
303      like: how to remove redundancies between generated .in files
304      instead should implement `include' directive for Makefile.am ]
305 * for multi-":" mode and AC_OUTPUT, it might be good to pick the
306   first input file that has a corresponding .am file.
308 Some long-term projects:
309 * if $(FOO) is used somewhere, ensure FOO is defined, either by
310   user or by automake if possible
312 [ include, += support ]
313 * even better would be allowing targets in different included
314   fragments to be merged.  e.g., `install-local'.
316 consider putting all check-* targets onto @check?
317 To support --help/--version checking?
319 take diff-n-query code from libit
321 Per Bothner says:
322 Per> 1) Being able to build a set of non-source programs
323 Per> from source programs, without necessarily linking them together.
324 Per> I.e. one should be able to say something like:
325 Per>    dummy_SOURCES=foo.c bar.c
326 Per> and automake should realize that it needs to build foo.o and bar.o.
327 Per> 2) Being intelligent about new kinds of suffixes.
328 Per> If it sees:
329 Per>    SUFFIXES = .class .java
330 Per> and a suffix rule of the form:
331 Per>    .java.class:
332 Per> then it should be able to realize it can build .class files from
333 Per> .java files, and thus be able to generate a list of
334 Per> .class files from a list of .java source files.
336 !! Must fix require_file stuff.  It is really gross, and I don't
337    understand it any more.
339 Jim's idea: should look for @setfilename and warn if filenames too long
340 * guess split size
342 ** many requests for a way to omit a file from the distribution.
343    Should be done like `!foo' or `~foo' in _SOURCES, etc.
344    Such files should be removed explicitly after the copy step!
345    Doing this requires rewriting macros before generating Makefile.in.
347 from joerg-martin schwarz:
348  -- If Makefile.am contains $(CC), $(COMPILE), $(YLWRAP), ....
349     in an explicitly written rule,  you should emit the corresponding
350     Makefile variables automatically.
352 Configuring in the large:
353 * allow hierarchy of dirs to share one aclocal.m4
354   How?
356 consider printing full file name of Makefile.am or configure.in when
357 giving error.  This would help for very large trees with many
358 configure.in scripts
360 From the GNU Standards.  These things could be checked, and probably
361 should be if --gnu.
362 *    Make sure that the directory into which the distribution unpacks (as
363 well as any subdirectories) are all world-writable (octal mode 777).
364 *   Make sure that no file name in the distribution is more than 14
365 characters long.
366 *    Don't include any symbolic links in the distribution itself.
367      (ditto hard links)
368 *    Make sure that all the files in the distribution are world-readable.
369 ** also, check --help output and --version output.  Idea from François
370 * standards no longer prohibit ANSI C.  What does this imply
371   for the de-ansi-fication feature? [ must keep it -- some users rely on it ]
373 should be able to determine what is built by looking at rules (and
374 configure.in).  Then built man pages (eg) could automatically be
375 omitted from the distribution.
377 Henrik Frystyk Nielsen says:
378 Henrik> 4) Flags like --include-deps are lost when you make changes to
379 Henrik> Makefile.am files and automake is run automatically. It would
380 Henrik> be nice to keep these flags as I now have to redo everything
381 Henrik> manually.
382 ... what about other options here too?
384 Think about: maybe "make check" should just bomb if error occurs?
385 Then user must use "make -k check".  This is probably more natural.
387 Consider: "cvs" option adds some cvs-specific rules?
389 Right now, targets generated internally (eg "install") are not
390 overridable by user code.  This should probably be possible, even
391 though it isn't very important.  This could be done by generating all
392 internal rules via a function call instead of just appending to
393 $output_rules.
394  [ this will be harder to implement when scanning a rule like all-recursive
395    from subdirs.am ]
397 * Should be a way to have "nobuild_PROGRAMS" which aren't even built,
398   but which could be by running the magic make command.
400 Other priorities:
401 * Must rewrite am_install_var.  Should break into multiple functions.
402   This will allow the callers to be a little smarter.
403 * Rewrite clean targets.
404 * Must rewrite error handling code.  Right now it is a real mess
405   Should fix up require_file junk at the same time
407 djm wants ``LINKS'' variable; list of things to link together after
408 install.  In BSD environment, use:
409         LINKS = from1 to1 from2 to2 ...
411 Need way to say there are no suffixes in a Makefile (Franc,ois'
412 "override" idea suffices here)
414 Check to make sure various scripts are executable (IE when looking for
415 them in a directory)
417 Use recode in dist target when MAINT_CHARSET specified.  Read caveats
418 in automake.in before doing this.  Note the same problem used to apply
419 to the no-dependencies option; maybe it still should?  Note also that
420 each Makefile.am must be rewritten at "make dist" time if
421 MAINT_CHARSET and DIST_CHARSET are not identical.  NOTE: gettext must
422 arrange for all .po files not to be recoded.  In the long term this
423 might be a problem (consider when some systems use Unicode but the
424 rest do not)
425   MAINT_CHARSET *must* be local to each Makefile.am, to enable
426         merged distributions.
427   DIST_CHARSET must be passed down to subdir makes during a "make dist"
429 Handle dist-zoo.  Generally add more DOS support.  Maybe run "doschk"
430 (why isn't this merged with "pathchk"?) when doing a dist.  Do
431 whatever else François says here...
433 Add support for html via an option.  Use texi2html.  Use
434 "html_TEXINFOS", and htmldir = .../html.  Include html files in
435 distribution.  Also allow "html_DATA", for raw .html files.
436   [ when will texinfo directly support html? ]
438 uninstall and pkg-dirs should rm -rf the dir.
440 a potential bug: configure puts "blah.o" into LIBOBJS, thus implying
441 these files can't be de-ansified.  Not a problem?
442   [ fix by using ansi2knr wrapper program ]
444 In general most .am files should be merged into automake.  For
445 instance all the "clean" targets could be merged by keeping lists of
446 things to be removed.  This would be a lot nicer looking.  Note that
447 the install targets probably should not be merged; it is sometimes
448 useful to only install a small part.
450 Clean up the output:
451 * Order rules sensibly
452 * Ensure every line has a purpose.  Omit unused stuff
453 * Eliminate extraneous rules when possible (eg 'install-am' stuff)
454 * Make sure vertical spacing is correct
455 Omit program transform vars from header if no program installed.  This
456 is currently pretty hard to do.  (But with beautification code it
457 would probably be easy)
459 Lex, yacc support:
460 * It would be nice to automatically support using bison's better features
461   to rename the output files.  This requires autoconf support
462 * Consider supporting syntax from autoconf "derived:source", eg:
463         y.tab.c:perly.y
464   for yacc and lex source
465 * what if you use flex and the option to avoid -lfl?
466   should support this?
468 Multi-language support:
469 * should have mapping of file extensions to languages
470 * should automatically handle the linking issue (special-case C++)
471 * must get compile rules for various languages; FORTRAN probably
472   most important unimplemented language
473 This should be integrated in some way with Per's idea.
474 Eg .f.o rules should be recognized & auto-handled in _SOURCES
475 That way any random language can be treated with C/C++ on a first-class
476 basis (maybe)
478 It might be cool to generate .texi dependencies by grepping for
479 @include.  (If done, it should be done the same way C dependencies are
480 done)
482 It would be good to check some parts of GNU standards.  Already check
483 for install-sh and mkinstalldirs.  What else is required to be in
484 package by GNU standards or by automake?
485 Some things for --strictness=gnits:
486 * "cd $(foo); something" is an error in a rule.  Should be:
487   "cd $(foo) && something"
488 * Look for 'ln -s' and warn about using $(LN) and AC_PROG_LN_S
489 * Look for $(LN) and require AC_PROG_LN_S
491 Auto-distribute "ChangeLog.[0-9]+"?  "ChangeLog.[a-z]+"?
493 Internationalize. [ gettext doesn't have the necessary machinery yet ]
494 am_error should use printf-style arguments (for eventual gettext scheme)
496 François says the ordering of files in a distribution should be as follows:
497 * README
498 * source files
499 * derived files
500 I agree, but I don't see how to implement this yet.
501 It might be easier if "derived files" is limited to those that
502 Automake itself knows about, eg output of yacc.
504 Check all source files to make sure that FSF address is up-to-date.
505 --gnits or --gnu only.
507 Merge each -vars.am file with corresponding ".am" file.  Can do this
508 because of changes to &file_contents.
510 Should libexec programs have the name transform done on them?
512 Order the output rules sensibly, so FOO_SOURCES and FOO_OBJECTS are
513 together and rules are in the usual order.
515 Make the output minimal: only output definitions for variables that
516 are used.
518 djm says:
519 David> To avoid comments like the one about subdirs getting buried in
520 David> the middle of a Makefile.in, how about pushing comments that
521 David> start with ### to the top of the Makefile.in (in order)?  Sort
522 David> of like how Autoconf uses diversions to force initialization
523 David> code to the top of configure.
525 Karl Berry says:
526 Karl> 2) Your Makefile variable names are generally uppercase, but GNU
527 Karl> generally uses lowercase. Not that it matters :-).
529 ================================================================
531 Stuff for aclocal:
533 probably should put each group of m4 files into a subdir owned by the
534 containing application.
536 ================================================================
538 Document:
540 AM_MISSING_PROG
542 how to use the generated makefiles
543  - standard targets
544  - required targets
545  - NORMAL_INSTALL junk
547 what goes in AC_CONFIG_AUX_DIR
549 multi-":" mode in AC_OUTPUT -- automake only looks at the first file
550     also a note on how a .am file is found in this case
552 rationale for avoiding
553         make CFLAGS="$CFLAGS" ...
554 in subdirs make rule
556 a package that installs its own aclocal macros
558 write example of using automake with dejagnu
559 follow calc example in dejagnu docs
561 document which variables are actually scanned and which are not.
563 Document customary ordering of Makefile.am.  From François.
565 Should include extended version of diagram from Autoconf (suggested by
566 Greg Woods)
568 Make a definition of the term "source"
570 document how to use Automake with CVS.  Idea from Mark Galassi.  Also
571 include Greg Woods' more sophisticated "cvs-dist" target.
573 document rebuilding configure.  CONFIGURE_DEPENDENCIES
574 CONFIG_STATUS_DEPENDENCIES
576 -- must document all variables that are supposed
577    to be public knowledge
579 must document the targets required for integration with
580 non-automake-using subdirs
582 document the "make SHELL='/bin/sh -x'" trick for debugging
584 section on relationship to GNU make.  include notes on parallel makes
586 add a concept index
588 move discussion of cygwin32, etags, mkid under other gnu tools
590 CCLD, CXXLD, FLD
592 ================================================================
594 Things to do for gcc:
596 Regularize dependency generation.  Add new flags:
598 -MH   Generate a dummy dependency for each header file mentioned.
599 -MT NAME
600       Set name of target
601 -MF NAME
602       Set name of output file
604 Then automake can use -MD -MH -MT 'foo.o foo.lo' -MF .deps/...
606 ================================================================
608 Things to do for autoconf:
610 * patch autoreconf to run automake and aclocal.  I've done this but it is
611   not really available.  It can't be made available until automake
612   is officially released
614 ================================================================
616 Libraries:
618 * Should support standalone library along with subdir library in same
619   Makefile.am.  Maybe: turn off "standalone" mode if library's Makefile.am
620   is not only one specd? [ add an option for this ]
622 ================================================================
624 Longer term:
626 Would it be useful to integrate in some way with the Debian package
627 building utility?  Must check.  maybe it would be possible to deal
628 with all the different package utilities somehow.  Lately I've been
629 hearing good things about the RedHat packaging utilities.  Why are
630 there so many of these?  Are they fun to write or something?
631 The RedHat package utility is called RPM; see
632         ftp://ftp.redhat.com/pub/code/rpm
633 It actually has problems, like no configure script and no documentation.
635 For Cygnus it would probably be good to be able to handle the native
636 package utility on each platform.  There are probably 3 or 4 of these
637 (sysv, solaris?, aix?)
639 tcl/unix/Makefile.in has some code to generate a Solaris package.
641 Automake probably can't do all of this on its own.  A new tool might
642 be a better idea
644 I have some notes from a Debian developer on how the integration
645 should work
647 ================================================================
649 A tool to guess what the local Makefile.am should look like:
650 (see Gord's Maint program!)
652 * Probably integrate with autoscan
653 * Use various simple rules to determine what to do:
654   * get name of top directory, sans version info
655   * search for .c files with 'main' in them
656     * if in main.c, use directory name for program
657     * if in more than one, generate multiple programs
658     * if not found, generate a library named after directory
659   * order subdir searches correctly: lib first, src last
660   * assume 'testsuite' dir means we are using dejagnu
661 * maybe be smart about reading existing Makefile.am, so tool
662   can be run for incremental changes?  You could imagine:
664         Makefile.am:
665                 autoproject --incremental
667 ================================================================
669 Stuff NOT to do, and why:
671 consider auto-including any file that matches "*.in".
672   [ no: po/Makefile.in shouldn't be included ]
674 must look at mkid to see how it works (for subdir usage)
675   [ right now, it doesn't.  i don't see a simple fix right now ]
677 if configure.in not found, move up a directory and try again?  This
678 could eliminate a common source of problems.
679   [ this is just a bad idea ]
681 * scripts are installed in $exec_prefix/bin, not $prefix/bin
682   Bug or feature?
683   [ the consensus on Gnits is that this isn't required.
684     doubters can work around it anyway ]
686 * make the auto-dep code crash if GNU make not in use?
687   (doesn't it already?)
689 Looked at a program called 'ezmake', which seems to do something
690 similar.  The only idea there that is possibly worth stealing is using
691 globs in definitions.  Also has negations.  Eg in a directory with
692 files a.c, b.c and c.c, the line:
693         foo_SOURCES = *.c ~c.c
694 would be equivalent to:
695         foo_SOURCES = a.c b.c
696 Is this worth implementing?
697   [ No... it is more reliable to spell everything out. ]
699 Scan source directories and warn about missing files, eg .c/.h files
700 that aren't mentioned?
701   [ distcheck makes this less useful ]
703 * quoting bugs
704   - how to install file with a space in its name?
705   [ don't bother with this -- make is just too losing ]
707 Local Variables:
708 mode: outline
709 End: