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

zconf.h.in was taken from the original zlib 1.2.8 package. The generation of
zconf.h was made equivalent to the one generated by cmake.
2016-05-29 17:55:43 -04:00

14 lines
195 B
Makefile

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