This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: automake & Objective C
- From: Tom Tromey <tromey at redhat dot com>
- To: Matej Kosik <kosik at decef dot elf dot stuba dot sk>
- Cc: automake <automake at gnu dot org>
- Date: 18 Aug 2002 16:49:49 -0600
- Subject: Re: automake & Objective C
- References: <3D6000AC.20703@decef.elf.stuba.sk>
- Reply-to: tromey at redhat dot com
>>>>> "Matej" == Matej Kosik <kosik@decef.elf.stuba.sk> writes:
Matej> I have put together some awful autoconf macros
Matej> cheking `Objective C' compiler's functionality.
Matej> automake: objcprog/Makefile.am: Objective C source
Matej> seen but `OBJC' not defined in `configure.ac'
Since there are no pre-canned macros for ObjC, you must define the
`OBJC' macro in configure.ac yourself. Like so:
OBJC=... something ...
AC_SUBST(OBJC)
Tom