mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
f434fd22b1
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.
22 lines
314 B
Makefile
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)
|