mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-27 09:58:08 +01:00
9498d044f8
- New (optional) dependency on the libconfig library, to save/load configuration files. - On Unix, the location of the configuration file respects the XDG Base Directory Specification. - The contrib system automatically fetches and builds libconfig for Windows cross-compilation - Fixed make distcheck
99 lines
3.3 KiB
Makefile
99 lines
3.3 KiB
Makefile
ICONV_VERSION = 1.12
|
|
LIBCONFIG_VERSION = 1.3.1
|
|
WX_VERSION = 2.6.4
|
|
BOOST_VERSION = 1_34_1
|
|
QT_VERSION = 4.4.1
|
|
|
|
PREFIX = $(shell pwd)/inst
|
|
WGET = wget -c
|
|
|
|
# XXX: Hardcoded for mingw on linux, at the moment
|
|
CC = i586-mingw32msvc-gcc
|
|
CXX = i586-mingw32msvc-g++
|
|
CPPFLAGS += -I$(PREFIX)/include
|
|
CONFIGURE = CC="$(CC)" CXX="$(CXX)" CPPFLAGS="$(CPPFLAGS)" ./configure --host=i586-mingw32msvc --build=i386-linux --prefix=$(PREFIX)
|
|
|
|
.PHONY: help all
|
|
|
|
all: .iconv .wxWidgets .boost .qt .libconfig
|
|
|
|
help:
|
|
@echo "Usage: make all"
|
|
|
|
|
|
### iconv ###
|
|
|
|
ICONV_DIR = libiconv-$(ICONV_VERSION)
|
|
ICONV_ARCHIVE = libiconv-$(ICONV_VERSION).tar.gz
|
|
|
|
$(ICONV_DIR):
|
|
$(WGET) http://ftp.gnu.org/pub/gnu/libiconv/$(ICONV_ARCHIVE)
|
|
tar xzf $(ICONV_ARCHIVE)
|
|
|
|
.iconv: $(ICONV_DIR)
|
|
(cd $< && $(CONFIGURE) --enable-static --disable-shared && make && make install)
|
|
touch $@
|
|
|
|
|
|
### libconfig ###
|
|
|
|
LIBCONFIG_DIR = libconfig-$(LIBCONFIG_VERSION)
|
|
LIBCONFIG_ARCHIVE = libconfig-$(LIBCONFIG_VERSION).tar.gz
|
|
|
|
$(LIBCONFIG_DIR):
|
|
$(WGET) http://www.hyperrealm.com/libconfig/$(LIBCONFIG_ARCHIVE)
|
|
tar xvf $(LIBCONFIG_ARCHIVE)
|
|
|
|
.libconfig: $(LIBCONFIG_DIR)
|
|
(cd $< && CFLAGS=-DLIBCONFIG_STATIC CXXFLAGS=-DLIBCONFIG_STATIC $(CONFIGURE) --enable-static --disable-shared && make && make install)
|
|
touch $@
|
|
|
|
|
|
### wxWidgets ###
|
|
|
|
WX_ARCHIVE = wxMSW-$(WX_VERSION).zip
|
|
WX_DIR = wxWidgets-$(WX_VERSION)
|
|
WX_DOS_FILES = config* *.sh install-sh mkinstalldirs
|
|
|
|
$(WX_DIR):
|
|
$(WGET) http://heanet.dl.sourceforge.net/sourceforge/wxwindows/$(WX_ARCHIVE)
|
|
unzip $(WX_ARCHIVE)
|
|
|
|
.wxWidgets: $(WX_DIR)
|
|
(cd $< && dos2unix $(WX_DOS_FILES) && chmod +x $(WX_DOS_FILES))
|
|
(cd $< && $(CONFIGURE) --disable-shared --enable-optimise --disable-debug --enable-unicode --without-libtiff --without-expat --without-zlib --without-libpng --without-libjpeg --without-regex --disable-mediactrl && make && make install)
|
|
dos2unix $(PREFIX)/bin/wx-config
|
|
touch $@
|
|
|
|
|
|
### Boost ###
|
|
|
|
BOOST_DIR = boost_$(BOOST_VERSION)
|
|
BOOST_ARCHIVE = boost_$(BOOST_VERSION).tar.bz2
|
|
|
|
$(BOOST_DIR):
|
|
$(WGET) http://garr.dl.sourceforge.net/sourceforge/boost/$(BOOST_ARCHIVE)
|
|
tar xjf $(BOOST_ARCHIVE)
|
|
|
|
# We don't build any library, because we don't need them (and it is really
|
|
# hard to cross-compile with their crappy build system)
|
|
.boost: $(BOOST_DIR)
|
|
#(cd $< && ./configure --prefix=$(PREFIX) && ./tools/jam/src/bin.linuxx86/bjam --toolset=gcc --prefix=$(PREFIX) --without-date_time --without-filesystem --without-graph --without-iostreams --without-program_options --without-python --without-regex --without-serialization --without-signals --without-test --without-thread --without-wave install)
|
|
cp -r $</boost $(PREFIX)/include
|
|
touch $@
|
|
|
|
|
|
### Qt ###
|
|
|
|
# FIXME: No automated way at the moment :-(
|
|
QT_ARCHIVE = qt4-$(QT_VERSION)-win32-bin.tar.bz2
|
|
QT_DIR = qt4-$(QT_VERSION)-win32-bin
|
|
|
|
$(QT_DIR):
|
|
$(WGET) http://download.videolan.org/pub/videolan/testing/contrib/$(QT_ARCHIVE)
|
|
tar xjf $(QT_ARCHIVE)
|
|
|
|
.qt: $(QT_DIR)
|
|
(cd $<; mkdir -p $(PREFIX)/bin; mkdir -p $(PREFIX)/include; mkdir -p $(PREFIX)/lib/pkgconfig; rm -f $(PREFIX)/lib/pkgconfig/Qt*; sed 's,@@PREFIX@@,$(PREFIX),' lib/pkgconfig/QtCore.pc.in > $(PREFIX)/lib/pkgconfig/QtCore.pc; sed 's,@@PREFIX@@,$(PREFIX),' lib/pkgconfig/QtGui.pc.in > $(PREFIX)/lib/pkgconfig/QtGui.pc; cp -r include/* $(PREFIX)/include; cp lib/*a $(PREFIX)/lib; mkdir -p $(PREFIX)/share/qt4/translations; cp -r share/translations/* $(PREFIX)/share/qt4/translations)
|
|
touch $@
|
|
|