Re: Target-specific flags not working

2006-06-09 Thread Stepan Kasal
Hello, I tried to reproduce your problem with Automake 1.9.5 and did not succeed either. Besides all the comments from Ralf, there is one more subtle bug: On Fri, Jun 09, 2006 at 09:30:28AM +0200, Daniel Haude wrote: > gui_data.c gui_data.h : gen_gui_data > ./gen_gui_data You should ad

Re: Target-specific flags not working

2006-06-09 Thread Ralf Wildenhues
Hello Daniel, * Daniel Haude wrote on Fri, Jun 09, 2006 at 09:30:28AM CEST: > > I'm trying to get automake to set a compiler flag when compiling a > specific binary. My Makefile.am looks (in part) like this: > CFLAGS = -W -Wall -ansi -pedantic -g CFLAGS are supposed to be reserved for the user;

Target-specific flags not working

2006-06-09 Thread Daniel Haude
Hello, I'm trying to get automake to set a compiler flag when compiling a specific binary. My Makefile.am looks (in part) like this: CFLAGS = -W -Wall -ansi -pedantic -g [...] bin_PROGRAMS = ctops-gui gen_gui_data gen_gui_data_SOURCES = \ gen_gui_data.c \ [...] ctops_g