lyx_mirror/3rdparty/Makefile.am
Georg Baum f434fd22b1 Configure included hunspell with autotools
The included hunspell 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 hunspell or not.
cmake does already support that.

Now the only other dependency you need to cross-compile for mingw on debian
or ubuntu is qt.
2016-05-29 17:55:44 -04:00

22 lines
314 B
Makefile

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