some distributed header problem

2002-01-14 Thread cityhunter x-y-z
i've the following pb : my project is as follow : - a dir contain some general headers in many subdir - some dirs for libraries - some dirs for programs i'd like to add in a makefile something like that _SOURCES = $(topsourcedir)/headers/smthg.h . to have make check if smthg.h have

Re: some distributed header problem

2002-01-14 Thread Robert Collins
xxx_SOURCES = $(top_srcdir)/headers/foo.h but this is buggy right now (see the thread PR 224). as for #2, read the FAQ/documentation. You should anyway. for #3, also same answer as for #2. Rob - Original Message - From: cityhunter x-y-z [EMAIL PROTECTED] Subject: some distributed

Re: some distributed header problem

2002-01-14 Thread Tom Tromey
== cityhunter x-y-z [EMAIL PROTECTED] writes: i'd like to add in a makefile something like that _SOURCES =3D $(topsourcedir)/headers/smthg.h . to have make check if smthg.h have changed how could i do that? First, using $(top_srcdir) like this doesn't work. There is already