[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: AM_CPPFLAGS don't appear in cygwin CC line
From: |
Ralf Corsepius |
Subject: |
Re: AM_CPPFLAGS don't appear in cygwin CC line |
Date: |
Fri, 20 Feb 2004 19:24:21 +0100 |
On Fri, 2004-02-20 at 18:30, Thomas 'Tom' R. Treadway III wrote:
> So, I should change:
>
> all: sstruct
>
> to
>
> all: sstruct$(EXEEXT)
No. Normally, you should not set "all:" at all.
> Automake appears to automatically change
> EXTRA_PROGRAMS = sstruct
>
> to
> EXTRA_PROGRAMS = sstruct$(EXEEXT)
Try
all-local: struct$(EXEEXT)
Ralf