help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Different compilation based on filename


From: Paul Smith
Subject: Re: Different compilation based on filename
Date: Sat, 12 Sep 2009 18:32:51 -0400

On Thu, 2009-09-10 at 14:50 +0200, Christian Rogsch wrote:
> I have the following problem with a makefile: I want to compile files 
> with different compiler flags, based on the name of the file.

There are a number of ways to do this.  One is target-specific
variables, as Cheng suggested.

Another is constructed variable names.  Variable names in make can
consist of other variables.  So you could do something like this:

        foo.o_CFLAGS = -g

        %.o : %.c
                $(CC) $(CFLAGS) $(address@hidden) -o $@ -c $<

The $(address@hidden) (or, equivalently, $($(@)_CFLAGS)) expands to the value
contained in the variable named by concatenating the target ($@) with
the string _CFLAGS.

Personally I find this method the most aesthetically pleasing, mainly
because in my complex make environments I like to have all the "user
visible" makefile purely data-driven: they simply declare variables but
never need to declare rules.  The rules are all created in some deeply
magical common makefiles set up for the project.


The final way to do it is with $(eval ...) but this is overkill for this
problem, 99% of the time.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <address@hidden>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.mad-scientist.net
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist




reply via email to

[Prev in Thread] Current Thread [Next in Thread]