mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
0e50ad8b16
Move it to 3rdparty/ directory alongside the other ones.
29 lines
409 B
Makefile
29 lines
409 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
DIST_SUBDIRS = boost hunspell mythes libiconv zlib
|
|
|
|
if USE_INCLUDED_BOOST
|
|
if LYX_USE_STD_REGEX
|
|
else
|
|
BOOST = boost
|
|
endif
|
|
endif
|
|
|
|
if USE_INCLUDED_HUNSPELL
|
|
HUNSPELL = hunspell
|
|
endif
|
|
|
|
if USE_INCLUDED_MYTHES
|
|
MYTHES = mythes
|
|
endif
|
|
|
|
if USE_INCLUDED_ICONV
|
|
ICONV = libiconv
|
|
endif
|
|
|
|
if USE_INCLUDED_ZLIB
|
|
ZLIB = zlib
|
|
endif
|
|
|
|
SUBDIRS = $(BOOST) $(HUNSPELL) $(MYTHES) $(ICONV) $(ZLIB)
|