* lib/depcomp (tru64): New dependency tracking mode.
[automake.git] / TODO
blob54a4368cd4fa5b24883e678cff117a52688d6758
1 for 1.5
2 investigate problems with conditionally defined libraries
4 add an error if the user makefile.am violates our
5    namespace rules
7 have 'make check' print tests which are skipped
9 we need a document describing automake from the end user's point of view
10 eg describe INSTALL_HEADER there, among other things
12 * maintainer-clean
14 Akim:
15 > @@ -31,5 +31,9 @@
16 >  DISTCLEAN    -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
18 >  maintainer-clean-generic:
19 > +## FIXME: shouldn't we really print these messages before running
20 > +## the dependencies?
21 > +     @echo "This command is intended for maintainers to use"
22 > +     @echo "it deletes files that may require special tools to rebuild."
23 >         -rm -f Makefile.in
25 Tom:
26 > I'd like to eventually fix the FIXME comment by having
27 > maintainer-clean look like:
29 >     maintainer-clean:
30 >         @echo ...
31 >         $(MAKE) whatever
33 > We're left with the question of whether we should repeat them in every
34 > subdir.
37 Alexandre Oliva:
38 > Hmm...  Interesting.  It must have been a side effect of the enabling
39 > of forced `relink' on GNU/Linux/x86.  Anyway, on platforms that
40 > actually require relinking, this problem remains, and I see no way to
41 > overcome it other than arranging for automake to install libraries
42 > before executables, as you suggest.  This shouldn't be a big problem,
43 > anyway.
45 > A bigger problem could show up if two libraries in the same directory,
46 > one dependent on the other, are installed concurrently.  If relinking
47 > is needed for the dependent library, we have a problem.  It appears to
48 > me that user will have to live without `make -j install', in this
49 > case.
51 Alex Hornby
52 > Here's an Automake patch and changelog entry allow make -j install on
53 > such degenerate systems (and Linux with buggy libtool <g>)
55 > If you install to locations other that bin_ and lib_ then a larger fix
56 > is necessary, but this should fix the 90% case.
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 traces as autoheader does.
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 * per-exe flags
101 ** We're using `$<' in explicit rules when using per-exe flags
102 ** per-exe flags don't work for CPPFLAGS/YFLAGS/LFLAGS.  Fix.
103 ** LIBOBJS shouldn't be used when there are per-exe flags (?)
105 * Need a way to pass flags to makeinfo
106   esp --no-split
108 * test `make clean' with subdir-objects
110 * Test nodist_SOURCES with lex, yacc, etc.
112 * Support subdir-objects with fortran
114 * Allow creation of Java .zip/.jar files in natural way
115   If you are building a compiled Java library, then the .zip/.jar
116   ought to be made automatically.
118 * Run automake before libtool.  It will report an error but
119   still won't put the file into the disty.  This is wrong.
120   From Mark H Wilkinson <mhw@kremvax.demon.co.uk>
122 * CFLAGS only defined if C source seen
123   but really it should be a configure variable, shouldn't it?
124   There are other examples of this
125   [ moving to autoconf --trace ought to fix this ]
127 * in gnu/gnits mode, give error if Makefile.am overrides a user
128   variable like CFLAGS.
129   [ this is low priority because the package author can always
130     circumvent our check by redefining in configure.in
131     plus it is probably better to encourage good behavior than to
132     punish bad ]
134 * If we see `foo.o' in LIBOBJS, and we've seen AC_OBJEXT, then complain.
135   [ how will we know that?  it is better to handle this automatically
136     via an autoconf hook ]
138 * examine possibility of using any character in a macro name
139   and rewriting names automatically.  this means we must rewrite
140   all references as well.
141   [ this is a 2.0-style feature ]
143 * AM_CONFIG_HEADER might generate the wrong stamp file names
144   when given multiple headers.  Write a test.
146 * Currently don't correctly handle multiple inputs to a config header.
147   [ this should no matter in the future as acconfig.h and so on are
148     obsoleted by the AH series of macros.]
150 * header stamp files still in wrong dirs.
151   stamp-h.in must be in dir with h.in file
152   stamp-h must be in dir with output file
154 * conditionals and macros
155   Our current scheme cause combinatoric explosion.
157   In fact, to be honest, I no longer understand very well why we perform
158   such a closure.  I mean, as is, Automake transforms (this is
159   cond3.test)
161     | bin_PROGRAMS = targ
162     |
163     | if ONE
164     | SONE = one.c
165     | else
166     | SONE =
167     | endif
168     |
169     | if TWO
170     | STWO = two.c
171     | else
172     | STWO =
173     | endif
174     |
175     | if THREE
176     | STHREE = three.c
177     | else
178     | STHREE =
179     | endif
180     |
181     | targ_SOURCES = $(SONE) $(STWO) $(STHREE)
183   into
185     | @ONE_FALSE@@THREE_FALSE@@TWO_TRUE@am_targ_OBJECTS = two.$(OBJEXT)
186     | @ONE_FALSE@@THREE_FALSE@@TWO_FALSE@am_targ_OBJECTS =
187     | @ONE_FALSE@@THREE_TRUE@@TWO_TRUE@am_targ_OBJECTS = two.$(OBJEXT) \
188     | @ONE_FALSE@@THREE_TRUE@@TWO_TRUE@ three.$(OBJEXT)
189     | @ONE_FALSE@@THREE_TRUE@@TWO_FALSE@am_targ_OBJECTS = three.$(OBJEXT)
190     | @ONE_TRUE@@THREE_FALSE@@TWO_TRUE@am_targ_OBJECTS = one.$(OBJEXT) \
191     | @ONE_TRUE@@THREE_FALSE@@TWO_TRUE@ two.$(OBJEXT)
192     | @ONE_TRUE@@THREE_FALSE@@TWO_FALSE@am_targ_OBJECTS = one.$(OBJEXT)
193     | @ONE_TRUE@@THREE_TRUE@@TWO_TRUE@am_targ_OBJECTS = one.$(OBJEXT) \
194     | @ONE_TRUE@@THREE_TRUE@@TWO_TRUE@ two.$(OBJEXT) three.$(OBJEXT)
195     | @ONE_TRUE@@THREE_TRUE@@TWO_FALSE@am_targ_OBJECTS = one.$(OBJEXT) \
196     | @ONE_TRUE@@THREE_TRUE@@TWO_FALSE@ three.$(OBJEXT)
198   why don't we just output
200     | @ONE_TRUE@am_SONE_OBJECTS = one.$(OBJEXT)
201     | @ONE_FALSE@am_SONE_OBJECTS =
202     |
203     | @TWO_TRUE@am_STWO_OBJECTS = two.$(OBJEXT)
204     | @TWO_FALSE@am_STWO_OBJECTS =
205     |
206     | @THREE_TRUE@am_STHREE_OBJECTS = three.$(OBJEXT)
207     | @THREE_FALSE@am_STHREE_OBJECTS =
208     |
209     | am_targ_OBJECTS = $(am_SONE_OBJECTS) $(am_STWO_OBJECTS) $(am_STHREE_OBJECTS)
211   which means also, why do we look for the closure of PROGRAMS, instead
212   of just adding $(EXEEXT) to all its components and sub components
213   (i.e., inside sub vars such as $(SONE) above being a sub var of
214   targ_SOURCES)?
217   Aaaaaaaaaaah!  I think I know... Must be because of `+='.
219   Hm... No.  Indeed we transform
221     | FOO = foo
222     | if BAR
223     | FOO += BAR
224     | endif
226   into
228     | @BAR_TRUE@FOO = foo bar
229     | @BAR_FALSE@FOO = foo
231   but this seems good to me too?
233     | FOO = foo $(BAR_FOO)
234     | @BAR_TRUE@BAR_FOO = bar
235     | @BAR_FALSE@BAR_FOO =
238 * foo=bar
239   if cond
240   foo += joe
241   endif
242   ... this ought to work.  The fix is probably complicated, but might
243   come for free when we rewrite the handling of conditionals.
245 * `distcheck' and `dist' should depend on `all'
247 * Add code to generate foo-config script like gnome, gtk
249 * `DEFS += foo' won't work.
250   That's because DEFS is defined in header-vars.am, which is read
251   after the user's Makefile.am.
252   This will be a problem for any macro defined internally
253     [ fixing this will probably fix the nasty `exeext redefines
254       foo_PROGRAMS' hack that is in there right now ]
255     [ we currently give an error when this occurs, so this is very low
256       priority ]
258 * document user namespace for macro/target names
259   adopt some conventions and use uniformly
260     [ this is a good thing for the rewrite ]
262 * make distcheck uses directories like `=build'.
263   Some (very rare) POSIX systems don't support `=' in filenames.
264   If this ever becomes a problem, fix it
266 * distclean must remove config.status
267   can't this cause problems for maintainer-clean?
268   shouldn't maintainer-clean print the message before running
269   any part of the make?  (just to slow things down long enough
270   for the user to stop it)
271   (maybe doesn't matter since people who even know about
272   maintainer-clean already have a clue)
274 * There are probably more bugs in variable_conditions_sub along
275   the lines of the one that caused cond4.test to fail.
277 * reintroduce AM_FUNC_FNMATCH which sets LIBOBJS
278   Then have automake know about fnmatch.h.
279     [ probably should wait for autoconf to get right functionality ]
281 * Every program foo has FOOFLAGS right now.
282   It should also have AM_FOOFLAGS, which can be set in Makefile.am.
283 DONE: but needs to be documented
285 * "make diff" capability
286   look at gcc's Makefile.in to see what to do
287   or look at maint program
289 * BUILT_SOURCES should not be distributed, even when they appear in
290   another _SOURCES line. [? or maybe just leave this up to the
291   to-be-defined generic distribution method ]
292   must completely revisit the entire BUILT_SOURCES idea
294 * in --cygnus, clean-info not generated at top level
296 * what if an element of a scanned variable looks like
297         $(FOO).$(BAR)  ?
298   or some other arbitrary thing?
299   right now we try to cope, but not very well
300     [ this is only of theoretical interest for now ]
302 * make sure every variable that is used is also defined
303     [ we don't really look at variable uses in detail.
304       2.0 thing ]
306 * make sure `missing' defines are generated
308 * missing should handle install -d and rmdir -p (for uninstall)
310 * notice when a .c file is a target somewhere, and auto-add it to
311     BUILT_SOURCES
313 * NORMAL_INSTALL / NORMAL_UNINSTALL -vs- recursive rules
314   [ requires changes to the standard ]
316 * copyrights on m4 files, aclocal output
318 * should not put texiname_TEXINFOS into distribution
319   should rename this macro anyway, to foo_texi_DEPENDENCIES
321 * *all* installed scripts should support --version, --help
323 * For now I guess I'll just have automake give an error if it encounters
324 non-C source in a libtool library specification.
326 * must split $obj into two parts: one for libtool and one for
327   deansification.  Otherwise .S files will be deansified!
329 * ansi2knr must currently appear in a directory that has some source
331 * if program has the same name as a target, do something sensible:
332   - if the target is internal, rename it
333   - if the target is mandated (eg, "info"), tell the user
334     consider auto-modifying the program name to work around this
336 * should separate actual options from strictness levels
337   strictness should only cover requirements
338   You should be able to pick and choose options
340 should clean up texinfos.am; one rule is repeated 3 times, but
341 shouldn't be
343 * rewrite in guile (RMS request)
344 at the same time, consider adding a GUI
345 could use the same parsing code for the GUI and the standalone version
346 that means figuring out a better representation of internal state
347 [ that's easy -- anything is better than what we have now ]
349 having just one Makefile for a project would give a big speed increase
350 for a project with many directories, eg glibc.  ideally (?) you'd
351 still be able to have a Makefile.am in each directory somehow; this
352 might make editing conceptually easier.
354 * finish up TAGS work
356 * only remove libtool at top level?
358 * clean up source directory by moving stuff into subdirs
360 * consider adding pkglibexecdir, maybe others?
361   requests for pkg-dirs with version included
363 Avoid loops when installing; instead unroll them in automake
365 * for new autoconf:
366   * completely handle multi-":" mode for AC_CONFIG_HEADER
367   * Scan multiple input files when Makefile is generated?
368     This would provide flexibility for large projects; subsumes
369     the "Makefile.tmpl" idea
371    [ can't do this.  must explain why in manual.
372      basically, solving all the problems is too hard
373      like: how to remove redundancies between generated .in files
374      instead should implement `include' directive for Makefile.am ]
375 * for multi-":" mode and AC_OUTPUT, it might be good to pick the
376   first input file that has a corresponding .am file.
378 Some long-term projects:
379 * if $(FOO) is used somewhere, ensure FOO is defined, either by
380   user or by automake if possible
382 [ include, += support ]
383 * even better would be allowing targets in different included
384   fragments to be merged.  e.g., `install-local'.
386 consider putting all check-* targets onto @check?
387 To support --help/--version checking?
389 take diff-n-query code from libit
391 Per Bothner says:
392 Per> 1) Being able to build a set of non-source programs
393 Per> from source programs, without necessarily linking them together.
394 Per> I.e. one should be able to say something like:
395 Per>    dummy_SOURCES=foo.c bar.c
396 Per> and automake should realize that it needs to build foo.o and bar.o.
397 Per> 2) Being intelligent about new kinds of suffixes.
398 Per> If it sees:
399 Per>    SUFFIXES = .class .java
400 Per> and a suffix rule of the form:
401 Per>    .java.class:
402 Per> then it should be able to realize it can build .class files from
403 Per> .java files, and thus be able to generate a list of
404 Per> .class files from a list of .java source files.
406 !! Must fix require_file stuff.  It is really gross, and I don't
407    understand it any more.
409 Jim's idea: should look for @setfilename and warn if filenames too long
410 * guess split size
412 ** many requests for a way to omit a file from the distribution.
413    Should be done like `!foo' or `~foo' in _SOURCES, etc.
414    Such files should be removed explicitly after the copy step!
415    Doing this requires rewriting macros before generating Makefile.in.
417 from joerg-martin schwarz:
418  -- If Makefile.am contains $(CC), $(COMPILE), $(YLWRAP), ....
419     in an explicitly written rule,  you should emit the corresponding
420     Makefile variables automatically.
422 Configuring in the large:
423 * allow hierarchy of dirs to share one aclocal.m4
424   How?
426 consider printing full file name of Makefile.am or configure.in when
427 giving error.  This would help for very large trees with many
428 configure.in scripts
430 From the GNU Standards.  These things could be checked, and probably
431 should be if --gnu.
432 *    Make sure that the directory into which the distribution unpacks (as
433 well as any subdirectories) are all world-writable (octal mode 777).
434 *   Make sure that no file name in the distribution is more than 14
435 characters long.
436 *    Don't include any symbolic links in the distribution itself.
437      (ditto hard links)
438 *    Make sure that all the files in the distribution are world-readable.
439 ** also, check --help output and --version output.  Idea from François
440 * standards no longer prohibit ANSI C.  What does this imply
441   for the de-ansi-fication feature? [ must keep it -- some users rely on it ]
443 should be able to determine what is built by looking at rules (and
444 configure.in).  Then built man pages (eg) could automatically be
445 omitted from the distribution.
447 Henrik Frystyk Nielsen says:
448 Henrik> 4) Flags like --include-deps are lost when you make changes to
449 Henrik> Makefile.am files and automake is run automatically. It would
450 Henrik> be nice to keep these flags as I now have to redo everything
451 Henrik> manually.
452 ... what about other options here too?
454 Think about: maybe "make check" should just bomb if error occurs?
455 Then user must use "make -k check".  This is probably more natural.
457 Consider: "cvs" option adds some cvs-specific rules?
459 Right now, targets generated internally (eg "install") are not
460 overridable by user code.  This should probably be possible, even
461 though it isn't very important.  This could be done by generating all
462 internal rules via a function call instead of just appending to
463 $output_rules.
464  [ this will be harder to implement when scanning a rule like all-recursive
465    from subdirs.am ]
467 * Should be a way to have "nobuild_PROGRAMS" which aren't even built,
468   but which could be by running the magic make command.
470 Other priorities:
471 * Must rewrite am_install_var.  Should break into multiple functions.
472   This will allow the callers to be a little smarter.
473 * Rewrite clean targets.
474 * Must rewrite error handling code.  Right now it is a real mess
475   Should fix up require_file junk at the same time
477 djm wants ``LINKS'' variable; list of things to link together after
478 install.  In BSD environment, use:
479         LINKS = from1 to1 from2 to2 ...
481 Need way to say there are no suffixes in a Makefile (Franc,ois'
482 "override" idea suffices here)
484 Check to make sure various scripts are executable (IE when looking for
485 them in a directory)
487 Use recode in dist target when MAINT_CHARSET specified.  Read caveats
488 in automake.in before doing this.  Note the same problem used to apply
489 to the no-dependencies option; maybe it still should?  Note also that
490 each Makefile.am must be rewritten at "make dist" time if
491 MAINT_CHARSET and DIST_CHARSET are not identical.  NOTE: gettext must
492 arrange for all .po files not to be recoded.  In the long term this
493 might be a problem (consider when some systems use Unicode but the
494 rest do not)
495   MAINT_CHARSET *must* be local to each Makefile.am, to enable
496         merged distributions.
497   DIST_CHARSET must be passed down to subdir makes during a "make dist"
499 Handle dist-zoo.  Generally add more DOS support.  Maybe run "doschk"
500 (why isn't this merged with "pathchk"?) when doing a dist.  Do
501 whatever else François says here...
503 Add support for html via an option.  Use texi2html.  Use
504 "html_TEXINFOS", and htmldir = .../html.  Include html files in
505 distribution.  Also allow "html_DATA", for raw .html files.
506   [ when will texinfo directly support html? ]
508 uninstall and pkg-dirs should rm -rf the dir.
510 a potential bug: configure puts "blah.o" into LIBOBJS, thus implying
511 these files can't be de-ansified.  Not a problem?
512   [ fix by using ansi2knr wrapper program ]
514 In general most .am files should be merged into automake.  For
515 instance all the "clean" targets could be merged by keeping lists of
516 things to be removed.  This would be a lot nicer looking.  Note that
517 the install targets probably should not be merged; it is sometimes
518 useful to only install a small part.
520 * Clean up the output:
521 ** Order rules sensibly
522 ** Ensure every line has a purpose.  Omit unused stuff
523 ** Eliminate extraneous rules when possible (eg 'install-am' stuff)
524 ** Make sure vertical spacing is correct
525 Omit program transform vars from header if no program installed.  This
526 is currently pretty hard to do.  (But with beautification code it
527 would probably be easy)
529 * Lex, yacc support:
530 ** It would be nice to automatically support using bison's better features
531   to rename the output files.  This requires autoconf support
532 ** Consider supporting syntax from autoconf "derived:source", eg:
533         y.tab.c:perly.y
534   for yacc and lex source
535 ** what if you use flex and the option to avoid -lfl?
536   should support this?
538 * Multi-language support:
539 ** should have mapping of file extensions to languages
540 ** should automatically handle the linking issue (special-case C++)
541 ** must get compile rules for various languages; FORTRAN probably
542   most important unimplemented language
543 This should be integrated in some way with Per's idea.
544 Eg .f.o rules should be recognized & auto-handled in _SOURCES
545 That way any random language can be treated with C/C++ on a first-class
546 basis (maybe)
548 It might be cool to generate .texi dependencies by grepping for
549 @include.  (If done, it should be done the same way C dependencies are
550 done)
552 It would be good to check some parts of GNU standards.  Already check
553 for install-sh and mkinstalldirs.  What else is required to be in
554 package by GNU standards or by automake?
555 Some things for --strictness=gnits:
556 * "cd $(foo); something" is an error in a rule.  Should be:
557   "cd $(foo) && something"
558 * Look for 'ln -s' and warn about using $(LN) and AC_PROG_LN_S
559 * Look for $(LN) and require AC_PROG_LN_S
561 Auto-distribute "ChangeLog.[0-9]+"?  "ChangeLog.[a-z]+"?
563 Internationalize. [ gettext doesn't have the necessary machinery yet ]
564 am_error should use printf-style arguments (for eventual gettext scheme)
566 François says the ordering of files in a distribution should be as follows:
567 * README
568 * source files
569 * derived files
570 I agree, but I don't see how to implement this yet.
571 It might be easier if "derived files" is limited to those that
572 Automake itself knows about, eg output of yacc.
574 Check all source files to make sure that FSF address is up-to-date.
575 --gnits or --gnu only.
577 Merge each -vars.am file with corresponding ".am" file.  Can do this
578 because of changes to &file_contents.
580 Should libexec programs have the name transform done on them?
582 Order the output rules sensibly, so FOO_SOURCES and FOO_OBJECTS are
583 together and rules are in the usual order.
585 Make the output minimal: only output definitions for variables that
586 are used.
588 djm says:
589 David> To avoid comments like the one about subdirs getting buried in
590 David> the middle of a Makefile.in, how about pushing comments that
591 David> start with ### to the top of the Makefile.in (in order)?  Sort
592 David> of like how Autoconf uses diversions to force initialization
593 David> code to the top of configure.
595 Karl Berry says:
596 Karl> 2) Your Makefile variable names are generally uppercase, but GNU
597 Karl> generally uses lowercase. Not that it matters :-).
599 ================================================================
601 Stuff for aclocal:
603 probably should put each group of m4 files into a subdir owned by the
604 containing application.
606 ================================================================
608 Document:
610 AM_MISSING_PROG
612 how to use the generated makefiles
613  - standard targets
614  - required targets
615  - NORMAL_INSTALL junk
617 what goes in AC_CONFIG_AUX_DIR
619 multi-":" mode in AC_OUTPUT -- automake only looks at the first file
620     also a note on how a .am file is found in this case
622 rationale for avoiding
623         make CFLAGS="$CFLAGS" ...
624 in subdirs make rule
626 a package that installs its own aclocal macros
628 write example of using automake with dejagnu
629 follow calc example in dejagnu docs
631 document which variables are actually scanned and which are not.
633 Document customary ordering of Makefile.am.  From François.
635 Should include extended version of diagram from Autoconf (suggested by
636 Greg Woods)
638 Make a definition of the term "source"
640 document how to use Automake with CVS.  Idea from Mark Galassi.  Also
641 include Greg Woods' more sophisticated "cvs-dist" target.
643 document rebuilding configure.  CONFIGURE_DEPENDENCIES
644 CONFIG_STATUS_DEPENDENCIES
646 -- must document all variables that are supposed
647    to be public knowledge
649 must document the targets required for integration with
650 non-automake-using subdirs
652 document the "make SHELL='/bin/sh -x'" trick for debugging
654 section on relationship to GNU make.  include notes on parallel makes
656 add a concept index
658 move discussion of cygwin32, etags, mkid under other gnu tools
660 CCLD, CXXLD, FLD
662 ================================================================
664 Things to do for gcc:
666 Regularize dependency generation.  Add new flags:
668 -MH   Generate a dummy dependency for each header file mentioned.
669 -MT NAME
670       Set name of target
671 -MF NAME
672       Set name of output file
674 Then automake can use -MD -MH -MT 'foo.o foo.lo' -MF .deps/...
676 ================================================================
678 Libraries:
680 * Should support standalone library along with subdir library in same
681   Makefile.am.  Maybe: turn off "standalone" mode if library's Makefile.am
682   is not only one specd? [ add an option for this ]
684 ================================================================
686 Longer term:
688 Would it be useful to integrate in some way with the Debian package
689 building utility?  Must check.  maybe it would be possible to deal
690 with all the different package utilities somehow.  Lately I've been
691 hearing good things about the RedHat packaging utilities.  Why are
692 there so many of these?  Are they fun to write or something?
693 The RedHat package utility is called RPM; see
694         ftp://ftp.redhat.com/pub/code/rpm
695 It actually has problems, like no configure script and no documentation.
697 For Cygnus it would probably be good to be able to handle the native
698 package utility on each platform.  There are probably 3 or 4 of these
699 (sysv, solaris?, aix?)
701 tcl/unix/Makefile.in has some code to generate a Solaris package.
703 Automake probably can't do all of this on its own.  A new tool might
704 be a better idea
706 I have some notes from a Debian developer on how the integration
707 should work
709 ================================================================
711 A tool to guess what the local Makefile.am should look like:
712 (see Gord's Maint program!)
714 * Probably integrate with autoscan
715 * Use various simple rules to determine what to do:
716   * get name of top directory, sans version info
717   * search for .c files with 'main' in them
718     * if in main.c, use directory name for program
719     * if in more than one, generate multiple programs
720     * if not found, generate a library named after directory
721   * order subdir searches correctly: lib first, src last
722   * assume 'testsuite' dir means we are using dejagnu
723 * maybe be smart about reading existing Makefile.am, so tool
724   can be run for incremental changes?  You could imagine:
726         Makefile.am:
727                 autoproject --incremental
729 ================================================================
731 Stuff NOT to do, and why:
733 consider auto-including any file that matches "*.in".
734   [ no: po/Makefile.in shouldn't be included ]
736 must look at mkid to see how it works (for subdir usage)
737   [ right now, it doesn't.  i don't see a simple fix right now ]
739 if configure.in not found, move up a directory and try again?  This
740 could eliminate a common source of problems.
741   [ this is just a bad idea ]
743 * scripts are installed in $exec_prefix/bin, not $prefix/bin
744   Bug or feature?
745   [ the consensus on Gnits is that this isn't required.
746     doubters can work around it anyway ]
748 Scan source directories and warn about missing files, eg .c/.h files
749 that aren't mentioned?
750   [ distcheck makes this less useful ]
752 * quoting bugs
753   - how to install file with a space in its name?
754   [ don't bother with this -- make is just too losing ]
756 Local Variables:
757 mode: outline
758 End: