mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
d67a8cb212
This should fix a build failure on OS X: Making all in boost AR liblyxboost.a ar: no archive members specified
25 lines
346 B
Makefile
25 lines
346 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
DIST_SUBDIRS = boost hunspell 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_ICONV
|
|
ICONV = libiconv
|
|
endif
|
|
|
|
if USE_INCLUDED_ZLIB
|
|
ZLIB = zlib
|
|
endif
|
|
|
|
SUBDIRS = $(BOOST) $(HUNSPELL) $(ICONV) $(ZLIB)
|