This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: nls patches - need help with make machinery
- To: pthomas at suse dot de
- Subject: Re: nls patches - need help with make machinery
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Sun, 4 Jun 2000 00:05:40 +0200
- CC: robertl at sco dot com, rearnsha at arm dot com, gcc at gcc dot gnu dot org
- References: <20000603232454.A15290@Jeffreys.suse.de>
> The only thing I didn't fix is to make chill link to libintl.a if needed. I
> just don't understand enough of the gcc make machinery to find a way to
> accomplish this. So any help from someone with more knowledge in this area
> would be greatly appreciated.
Wouldn't adding @INTLLIBS@ into ch/Makefile.in:LIBS do the job? Or
alternatively, follow the guidance of cp/Makefile.in, and define
INTLLIBS = @INTLLIBS@
and then add this to all places in ch/Makefile.in where INTLLIBS is
added in the cp Makefile (i.e. LIBS and LIBDEPS).
Regards,
Martin
P.S. What is the rationale for indirecting every configure variable
through a Makefile variable?