PayPal Important Warning

2005-08-17 Thread Service
Dear valued PayPal member:It has come to our attention that your PayPal account information needs to beupdated as part of our continuing commitment to protect your account and toreduce the instance of fraud on our website. If you could please take 5-10 minutesout of your online experience

Re: Files used in EXTRA_DIST not working with distcheck

2005-08-17 Thread Ralf Wildenhues
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 using

Re: how to extend the Makefile templates?

2005-08-17 Thread Harald Dunkel
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 be

Re: how to extend the Makefile templates?

2005-08-17 Thread Ralf Wildenhues
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.am to

Re: how to extend the Makefile templates?

2005-08-17 Thread Harald Dunkel
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 assumes that

Re: Files used in EXTRA_DIST not working with distcheck

2005-08-17 Thread Joshua Moore-Oliva
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

Re: Files used in EXTRA_DIST not working with distcheck

2005-08-17 Thread Stepan Kasal
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