Re: Automake a case study

2002-04-25 Thread Calvin Arndt
On 24 Apr 2002 18:15:59 -0600 Tom Tromey <[EMAIL PROTECTED]> wrote: > > "Calvin" == Calvin Arndt <[EMAIL PROTECTED]> writes: Darn, I was trying to keep that address from getting poluted by being posted on a freely accessible web page! please spank your mailer software for me! > > Calvin>

Re: Automake a case study

2002-04-24 Thread Tom Tromey
> "Calvin" == Calvin Arndt <[EMAIL PROTECTED]> writes: Calvin> docs_DATA = project/docs/* This won't really work. Automake doesn't support globbing like that. It may in the future (it is a debate topic), but it definitely doesn't right now. Calvin> project_SOURCES = *.c *.h I'm surprised

Re: Automake a case study

2002-04-23 Thread Roger Leigh
On Tue, Apr 23, 2002 at 12:24:59AM -0600, Calvin Arndt wrote: > Project/Makefile.am > > SUBDIRS = project > docsdir = $(datadir)/project/docs ^^^ use $(PACKAGE), it's more flexible > docs_DATA = project/docs/* In older releases of automake, you would have to write a di

Automake a case study

2002-04-23 Thread Calvin Arndt
I have a small project Directory Structure looks like this: /Project/ ---> Build system files go here | | |__/project/ ---> C src and headers go here | | |___/docs ---> *.txt *.doc *.html Project/Makefile.am SUBDIRS = project docsdir