Re: Selective inclusion of files to distribution

2010-06-24 Thread Ralf Wildenhues
Hello Stathis, * Stathis Kamperis wrote on Thu, Jun 24, 2010 at 10:15:22PM CEST: > VPATH = ../ > LDADD = -lm > AM_CFLAGS = -std=c99 -Wall -W > bin_PROGRAMS = ulp > ulp_SOURCES = main.c gen.c ulp.c subr_random.c > When I type 'make' everything goes fine. 'subr_random.c' is picked up in ../ Automa

Selective inclusion of files to distribution

2010-06-24 Thread Stathis Kamperis
Hello people, I have this directory layout: root/ subr_random.c subdir/ Makefile.am main.c gen.c ulp.c My Makefile.am is this: VPATH = ../ LDADD = -lm AM_CFLAGS = -std=c99 -Wall -W bin_PROGRAMS = ulp ulp_SOURCES = main.c gen.c ulp.c subr_random.c W

Re: Why no dependency tracking with preprocessed Fortran?

2010-06-24 Thread Ralf Wildenhues
* Daily, Jeff A wrote on Thu, Jun 24, 2010 at 04:46:28PM CEST: > > > Why doesn't automake have dependency tracking for preprocessed > > > Fortran? > > > > Because nobody has implemented it yet. > Ok, so how does one go about developing this sort of thing for > Automake? I'm certainly interested

RE: Why no dependency tracking with preprocessed Fortran?

2010-06-24 Thread Daily, Jeff A
> > Why doesn't automake have dependency tracking for preprocessed > Fortran? > > Because nobody has implemented it yet. > > Well, I guess dependency tracking could be implemented similarly to how > it is done for C and C++. Using makedepend could be a start, sure, but > testing for a depmode wo