lyx_mirror/3rdparty/Makefile.am
Georg Baum 08afc52c4c Configure included iconv with autotools
The included iconv should not be used on Linux or OS X, but (depending on
local configuration) it might be needed for crosscompiling a mingw target
from Linux. Now the user can choose whether to use the included iconv or not.
cmake does already support that.

eilseq.m4 was taken from the original libiconv 1.14 package.
2016-05-29 17:55:43 -04:00

18 lines
250 B
Makefile

include $(top_srcdir)/config/common.am
DIST_SUBDIRS = boost hunspell libiconv zlib
if USE_INCLUDED_BOOST
BOOST = boost
endif
if USE_INCLUDED_ICONV
ICONV = libiconv
endif
if USE_INCLUDED_ZLIB
ZLIB = zlib
endif
SUBDIRS = $(BOOST) $(ICONV) $(ZLIB)