Hello,
1) You have to add the "$(srcdir)/" prefix for distributed files.
(In the commands only, make searches the VPATH when looking for
prerequisities.)
2) You should mention cspm.tab.h as a target, not only in CLEANFILES.
3) You should keep BUILT_SOURCES minimal. BUILT_SOURCES is explained at
> It would be easier to say what's happening if you showed a bit more of
> your build setup, for example the rules that use cspm*.
This is the entire relevant Makefile.am
EXTRA_DIST = cspm.lex cspm.y
if DO_CSPT
bin_PROGRAMS = cspt
cspt_CXXFLAGS = -Wno-deprecated -DYYDEBUG=1 -include iostream.h
Ralf Wildenhues wrote:
>>
>>This would assume that I am allowed to change the foreign
>>Makefile.am files,
>
>
> Yes. What prevents this?
>
The version control system, maybe? Code coming
from another business units that I have to use
as is? Or simply because it is read-only?
>
>>and it assu
Hi Harald,
* Harald Dunkel wrote on Wed, Aug 17, 2005 at 10:15:57AM CEST:
> Ralf Wildenhues wrote:
> > * Harald Dunkel wrote on Tue, Aug 16, 2005 at 12:39:46PM CEST:
> >
> >>I would need some way to add recursive targets to all generated
> >>Makefiles, without asking every owner of every Makefile
Hi Ralf,
Ralf Wildenhues wrote:
> Hi Harald,
>
> * Harald Dunkel wrote on Tue, Aug 16, 2005 at 12:39:46PM CEST:
>
>>I would need some way to add recursive targets to all generated
>>Makefiles, without asking every owner of every Makefile.am
>>to append some include statement or some keyword to b
Hi Joshua,
* Joshua Moore-Oliva wrote on Wed, Aug 17, 2005 at 01:00:22AM CEST:
> I have two files, cspm.lex and cspm.y that due to circumstances out of
> my control need special processing. The only way I could get them
> into the package without automake automatically processing them was by
> us