Re: how to install data directories

2008-08-31 Thread Remco Bras
Hi, First, you've lost the list again. Second, subdirectories may be uninstalled by using uninstall-hook as follows: (presuming the stuff from the foodir example) uninstall-hook: rmdir $(foodir) Uninstall-hook is run after make uninstall has completed, so the directory may be safely remov

Re: how to install data directories

2008-08-29 Thread Remco Bras
Hi, ah yes, that is a problem, in that case, you could do something like this in Makefile.am: dirs = some_data_dir some_other_data_dir install-data-local: for d in $(dirs); \ do\ cp -Rv $d $(datadir)\ done Would this solution be acceptable? -Remco

Re: Extending default suffix rules.

2008-03-02 Thread Remco Bras
Hi, > * Remco Bras wrote on Sun, Mar 02, 2008 at 03:39:57PM CET: > > Op Sunday 02 March 2008 15:20:42 schreef Ralf Wildenhues: > > > Your rule is dangerous. If the user interrupts make at the time the > > > convertors.sh script has run but the backup hasn't bee

Re: Extending default suffix rules.

2008-03-02 Thread Remco Bras
Op Sunday 02 March 2008 15:20:42 schreef Ralf Wildenhues: > Your rule is dangerous. If the user interrupts make at the time the > convertors.sh script has run but the backup hasn't been restored yet, > the source will be wrong, and the next time you may have duplicate > function definitions (or wh

Re: Extending default suffix rules.

2008-03-02 Thread Remco Bras
Hi, Op Sunday 02 March 2008 10:42:04 schreef Ralf Wildenhues: > * Remco Bras wrote on Fri, Feb 29, 2008 at 11:37:01PM CET: > > as part of my work on GNU RPGE, I've had to 'extend' the automake suffix > > rule for compiling .c files to .o ones. > > Why, what lim

Extending default suffix rules.

2008-03-01 Thread Remco Bras
able to work on Automake. -Remco Bras