[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Defining an arbitary value for one output only
From: |
Richard Boulton |
Subject: |
Re: Defining an arbitary value for one output only |
Date: |
02 Jun 2002 11:47:43 +0100 |
On Sun, 2002-06-02 at 09:01, Michael Still wrote:
> My Makefile.am looks something like:
>
> noinst_PROGRAMS = sample ui
> sample_SOURCES = sample.c
> ui_SOURCES = ui.c other.c sample.c
>
> I would like to be able to define a value such as WITHWX (i.e.
> -DWITHWX=1) for the ui target only. I am having some trouble finding the
> right variable name to use...
>
> Can I have a hint please?
ui_CFLAGS = -DWITHWX
See "Program and Library Variables" in the automake info pages.
You'll need automake version 1.5 or later.
--
Richard