RE: per object cflags

2002-05-06 Thread Robert Collins
Subject: Re: per object cflags > > > >>>>> "Rob" == Robert Collins <[EMAIL PROTECTED]> writes: > > Rob> Are there any plans to allow per object CFLAGS (and CXXFLAGS...)? > > You mean per-`.o'? There aren't any concrete plans.

Re: per object cflags

2002-05-05 Thread Tom Tromey
>>>>> "Rob" == Robert Collins <[EMAIL PROTECTED]> writes: Rob> Are there any plans to allow per object CFLAGS (and CXXFLAGS...)? You mean per-`.o'? There aren't any concrete plans. Offhand I can't think of any barrier to doing it though. In fa

per object cflags

2002-04-26 Thread Robert Collins
Are there any plans to allow per object CFLAGS (and CXXFLAGS...)? I've got a projec that I want to put -Werror into the AM_C[XX]FLAGS variable, but a couple of files won't compile without warnings. The warnings are harmless, almost compiler bugs in fact, so fixing the source isn't

Re: Allow per-object cflags?

2001-02-09 Thread Emil Ong
On 8 Feb 2001, Tom Tromey wrote: > This ought to work with automake 1.4b. Yep, it did actually. I didn't realize that I had to delete my old "missing" file and run --add-missing again. This might be worth documenting, at least to prevent guys like me from complaining that it doesn't work. :)

Re: Allow per-object cflags?

2001-02-08 Thread Tom Tromey
> "Emil" == Emil Ong <[EMAIL PROTECTED]> writes: Emil> My particular interest is that I'm writing a wrapper program in Emil> C that changes based on a preprocessor define. I'd like to be Emil> able to do something like: Emil> bin_PROGRAMS = prog1 prog2 Emil> prog1_SOURCES = prog.c Emil> pro

Re: Allow per-object cflags?

2001-02-08 Thread Alexandre Oliva
On Feb 9, 2001, Emil Ong <[EMAIL PROTECTED]> wrote: > prog1_SOURCES = prog.c > prog1_CFLAGS = -DPROG_NAME=\"prog1\" > prog2_SOURCES = prog.c > prog2_CFLAGS = -DPROG_NAME=\"prog2\" This should work with CVS automake. -- Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/

Re: Allow per-object cflags?

2001-02-08 Thread Emil Ong
On 8 Feb 2001, Tom Tromey wrote: > >>>>> "Emil" == Emil Ong <[EMAIL PROTECTED]> writes: > > Emil> What is the state of per-object cflags in automake? Is anyone > Emil> working on them? If not, how difficult would it be to implement > Emil>

Re: Allow per-object cflags?

2001-02-08 Thread Tom Tromey
>>>>> "Emil" == Emil Ong <[EMAIL PROTECTED]> writes: Emil> What is the state of per-object cflags in automake? Is anyone Emil> working on them? If not, how difficult would it be to implement Emil> it? What do you mean by `object'? We have per-e

Allow per-object cflags?

2001-02-08 Thread Emil Ong
Hello, What is the state of per-object cflags in automake? Is anyone working on them? If not, how difficult would it be to implement it? Thanks, Emil