This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: How to handle a non-compilable file.
- From: Tom Tromey <tromey at redhat dot com>
- To: "Dr. David Kirkby" <drkirkby at ntlworld dot com>
- Cc: automake <automake at gnu dot org>
- Date: 29 Apr 2002 09:09:44 -0600
- Subject: Re: How to handle a non-compilable file.
- References: <77402.1020041079@dog.pfcs.com> <3CCD37DF.F2BEA7CB@ntlworld.com>
- Reply-to: tromey at redhat dot com
>>>>> "David" == David Kirkby <drkirkby@ntlworld.com> writes:
David> Incedently, is there a way of sparating the different sources,
David> so make it look clearer. i.e something like
David> CPP = file1.cpp, file2.cpp ..
David> H= file1.h, file2.h ...
David> XPM = file1.xpm, file2.xpm ..
David> atlc_SOURCES = CPP + H + XPM
You can do this, because you can introduce new variables to do
whatever you want, just like with make.
CPP = file.cpp
H = file.h
atlc_SOURCES = $(CPP) $(H)
Tom