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
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
* 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
> > 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