Re: top level make file with deep dir struct demo

2006-01-10 Thread Matt Hull
On Tue, 10 Jan 2006, Ralf Corsepius wrote: > On Tue, 2006-01-10 at 13:55 -0600, Matt Hull wrote: > > > > On Tue, 10 Jan 2006, Ralf Corsepius wrote: > > > > > On Tue, 2006-01-10 at 12:16 -0600, Matt Hull wrote: > > > > > On Mon, 2006-01-09 at 15:30 -0600, Matt Hull wrote: > > > > > > > > > > > ma

Re: top level make file with deep dir struct demo

2006-01-10 Thread Ralf Corsepius
On Tue, 2006-01-10 at 14:49 -0600, Matt Hull wrote: > > On Tue, 10 Jan 2006, Ralf Corsepius wrote: > > > On Tue, 2006-01-10 at 13:55 -0600, Matt Hull wrote: > > > > > > On Tue, 10 Jan 2006, Ralf Corsepius wrote: > > > > > > > On Tue, 2006-01-10 at 12:16 -0600, Matt Hull wrote: > > > > > > On Mon,

Re: top level make file with deep dir struct demo

2006-01-10 Thread Brian Dessent
Matt Hull wrote: > i was just thinking that. so i can do the top level makefile and use > autoconf/automake on the current system and configure and make should work > on the outdated ? That is why you include the configure script (and any other generated files) in your tarball. The person that

Re: top level make file with deep dir struct demo

2006-01-10 Thread Ralf Corsepius
On Tue, 2006-01-10 at 13:55 -0600, Matt Hull wrote: > > On Tue, 10 Jan 2006, Ralf Corsepius wrote: > > > On Tue, 2006-01-10 at 12:16 -0600, Matt Hull wrote: > > > > On Mon, 2006-01-09 at 15:30 -0600, Matt Hull wrote: > > > > > > > > > makefile.am : > > > > > - > > > > > bin_PROGRAMS =

Re: top level make file with deep dir struct demo

2006-01-10 Thread Ralf Corsepius
On Tue, 2006-01-10 at 12:16 -0600, Matt Hull wrote: > > On Mon, 2006-01-09 at 15:30 -0600, Matt Hull wrote: > > > > > makefile.am : > > > - > > > bin_PROGRAMS = mine > > > mine_SOURCES = src/main.c > > > > > > if WITH_GTK1 > > > mine_sources += src/gtk2/gtk1.c src/gtk2/gtk1.h > > > en

Re: top level make file with deep dir struct demo

2006-01-10 Thread Matt Hull
> On Mon, 2006-01-09 at 15:30 -0600, Matt Hull wrote: > > > makefile.am : > > - > > bin_PROGRAMS = mine > > mine_SOURCES = src/main.c > > > > if WITH_GTK1 > > mine_sources += src/gtk2/gtk1.c src/gtk2/gtk1.h > > endif > > > > DIST_SUBDIRS = src src/gtk1 src/gtk2 > > > [EMAIL PROTECTE

Re: top level make file with deep dir struct demo

2006-01-10 Thread Matt Hull
On Tue, 10 Jan 2006, Ralf Corsepius wrote: > On Tue, 2006-01-10 at 12:16 -0600, Matt Hull wrote: > > > On Mon, 2006-01-09 at 15:30 -0600, Matt Hull wrote: > > > > > > > makefile.am : > > > > - > > > > bin_PROGRAMS = mine > > > > mine_SOURCES = src/main.c > > > > > > > > if WITH_GTK1

Re: top level make file with deep dir struct demo

2006-01-10 Thread Ralf Wildenhues
Hi Matt, * Matt Hull wrote on Mon, Jan 09, 2006 at 10:30:03PM CET: > hi, thanks for your patience with my questions and sorry for posting on > the wrong list. No problem. It's not always easy for new users to know which is the right one. If your mailer allows it, it would be helpful though if y

Re: top level make file with deep dir struct demo

2006-01-10 Thread Ralf Corsepius
On Mon, 2006-01-09 at 15:30 -0600, Matt Hull wrote: > makefile.am : > - > bin_PROGRAMS = mine > mine_SOURCES = src/main.c > > if WITH_GTK1 > mine_sources += src/gtk2/gtk1.c src/gtk2/gtk1.h > endif > > DIST_SUBDIRS = src src/gtk1 src/gtk2 > [EMAIL PROTECTED] ~/mine-0.0.9 $ aclo

top level make file with deep dir struct demo

2006-01-09 Thread Matt Hull
hi, thanks for your patience with my questions and sorry for posting on the wrong list. i am trying to use a top level configure script in ./ with all sources in ./src and ./src/gtk2 directory : --- src/main.c src/gtk1/gtk1.c makefile.am : - bin_PROGRAMS = mine mine_SOURCES =