#! gmake # This is Makefile for Beremiz installer # # Invoke with "make -f path/to/Makefile" on a linux box # in directory where build should happen. # # All those dependencies have to be installed : # # Windows installer : # - wine (tested with 1.2 and 1.6. Fail with 1.4) # - mingw32 # - flex # - bison # - tar # - unrar # - wget # - nsis # - libtool # - xmlstarlet # - xsltproc # - python-lxml # # Linux RootFS and packages # - reprepro # - multistrap # - germinate # - user-mode-linux # - ddpt # # WARNING : DISPLAY variable have to be defined to a valid X server # in case it would be a problem, run : # xvfb-run make -f /path/to/this/Makefile version = 1.1 HGROOT := ~/src GITROOT := $(HGROOT) HGPULL = 0 DIST = CPUS = 8 BLKDEV=/dev/null src := $(shell dirname $(lastword $(MAKEFILE_LIST))) distfiles = $(src)/distfiles sfmirror = downloads tmp := $(shell mktemp -d) ifeq ("$(HGPULL)","1") define hg_get_archive hg -R $(HGROOT)/`basename $(1)` pull hg -R $(HGROOT)/`basename $(1)` update $(2) hg -R $(HGROOT)/`basename $(1)` archive $(1) endef else define hg_get_archive hg -R $(HGROOT)/`basename $(1)` archive $(2) $(1) endef endif define get_src_hg rm -rf $(1) $(call hg_get_archive, $(1), $(2)) endef define get_src_git rm -rf $(1) mkdir $(1) (cd $(GITROOT)/`basename $(1)`; git archive --format=tar $(2)) | tar -C $(1) -x endef define get_src_http dld=$(distfiles)/`echo $(2) | tr ' ()' '___'`;( ( [ -f $$dld ] || wget $(1)/$(2) -O $$dld ) && ( [ ! -f $$dld.md5 ] && (cd $(distfiles);md5sum `basename $$dld`) > $$dld.md5 || (cd $(distfiles);md5sum -c `basename $$dld.md5`) ) ) && endef define get_src_pypi $(call get_src_http,http://pypi.python.org/packages/$(1),$(2)) endef define get_src_sf $(call get_src_http,http://$(sfmirror).sourceforge.net/project/$(1),$(2)) endef all: Beremiz-$(version).exe $(targets_add) ifneq ("$(DIST)","") include $(src)/$(DIST).mk endif CUSTOM := public CUSTOM_DIR := $(src) include $(CUSTOM_DIR)/$(CUSTOM).mk build: rm -rf build mkdir -p build # native toolchain, pre-built mingwdir=build/mingw define get_mingw $(call get_src_sf,mingw/MinGW/Base/$(1),$(2)) tar -C $(mingwdir) --lzma -xf $$dld endef define get_msys $(call get_src_sf,mingw/MSYS/Base/$(1),$(2)) tar -C $(mingwdir) --lzma -xf $$dld endef mingw: |build rm -rf $(mingwdir) mkdir -p $(mingwdir) # windows.h $(call get_mingw,w32api/w32api-3.17,w32api-3.17-2-mingw32-dev.tar.lzma) # mingw runtime $(call get_mingw,mingw-rt/mingwrt-3.20,mingwrt-3.20-2-mingw32-dll.tar.lzma) # mingw headers and lib $(call get_mingw,mingw-rt/mingwrt-3.20,mingwrt-3.20-2-mingw32-dev.tar.lzma) # binutils $(call get_mingw,binutils/binutils-2.21.53,binutils-2.21.53-1-mingw32-bin.tar.lzma) # C compiler $(call get_mingw,gcc/Version4/gcc-4.6.1-2,gcc-core-4.6.1-2-mingw32-bin.tar.lzma) # dependencies $(call get_mingw,gmp/gmp-5.0.1-1,libgmp-5.0.1-1-mingw32-dll-10.tar.lzma) $(call get_mingw,mpc/mpc-0.8.1-1,libmpc-0.8.1-1-mingw32-dll-2.tar.lzma) $(call get_mingw,mpfr/mpfr-2.4.1-1,libmpfr-2.4.1-1-mingw32-dll-1.tar.lzma) $(call get_mingw,gettext/gettext-0.17-1,libintl-0.17-1-mingw32-dll-8.tar.lzma) $(call get_mingw,gettext/gettext-0.17-1,libgettextpo-0.17-1-mingw32-dll-0.tar.lzma) $(call get_mingw,libiconv/libiconv-1.13.1-1,libiconv-1.13.1-1-mingw32-dll-2.tar.lzma) # make, bash, and dependencies $(call get_msys,bash/bash-3.1.17-3,bash-3.1.17-3-msys-1.0.13-bin.tar.lzma) $(call get_msys,coreutils/coreutils-5.97-3,coreutils-5.97-3-msys-1.0.13-bin.tar.lzma) $(call get_msys,libiconv/libiconv-1.13.1-2,libiconv-1.13.1-2-msys-1.0.13-bin.tar.lzma) $(call get_msys,libiconv/libiconv-1.13.1-2,libiconv-1.13.1-2-msys-1.0.13-dll-2.tar.lzma) $(call get_msys,gettext/gettext-0.17-2,libintl-0.17-2-msys-dll-8.tar.lzma) $(call get_msys,regex/regex-1.20090805-2,libregex-1.20090805-2-msys-1.0.13-dll-1.tar.lzma) $(call get_msys,termcap/termcap-0.20050421_1-2,libtermcap-0.20050421_1-2-msys-1.0.13-dll-0.tar.lzma) $(call get_msys,make/make-3.81-3,make-3.81-3-msys-1.0.13-bin.tar.lzma) $(call get_msys,msys-core/msys-1.0.13-2,msysCORE-1.0.13-2-msys-1.0.13-bin.tar.lzma) $(call get_msys,termcap/termcap-0.20050421_1-2,libtermcap-0.20050421_1-2-msys-1.0.13-dll-0.tar.lzma) touch $@ msiexec = WINEPREFIX=$(tmp) msiexec wine = WINEPREFIX=$(tmp) wine pydir = build/python pysite = $(pydir)/Lib/site-packages python: |build rm -rf $(pydir) mkdir -p $(pydir) # Python $(call get_src_http,http://www.python.org/ftp/python/2.7.2,python-2.7.2.msi)\ $(msiexec) /qn /a $$dld TARGETDIR=.\\$(pydir) # WxPython (needs running inno unpacker in wine) $(call get_src_sf,innounp/innounp/innounp%200.36,innounp036.rar)\ unrar e $$dld innounp.exe $(tmp) $(call get_src_sf,wxpython/wxPython/2.8.12.1,wxPython2.8-win32-unicode-2.8.12.1-py27.exe)\ $(wine) $(tmp)/innounp.exe -d$(tmp) -x $$dld cp -R $(tmp)/\{code_GetPythonDir\}/* $(pydir) cp -R $(tmp)/\{app\}/* $(pysite) # wxPython fails if VC9.0 bullshit is not fully here. $(call get_src_http,http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140,vcredist_x86.exe)\ cp $$dld $(tmp) $(wine) $(tmp)/vcredist_x86.exe /qn /a cp $(tmp)/drive_c/windows/winsxs/x86_Microsoft.VC90.CRT*/* $(pydir) # MathPlotLib $(call get_src_http,https://github.com/downloads/matplotlib/matplotlib,matplotlib-1.2.0.win32-py2.7.exe)\ unzip -d $(tmp)/mathplotlib $$dld ; [ $$? -eq 1 ] #silence error unziping .exe cp -R $(tmp)/mathplotlib/PLATLIB/* $(pysite) # pywin32 $(call get_src_sf,pywin32/pywin32/Build216,pywin32-216.win32-py2.7.exe)\ unzip -d $(tmp)/pw32 $$dld ; [ $$? -eq 1 ] #silence error unziping .exe cp -R $(tmp)/pw32/PLATLIB/* $(pysite) # zope.interface $(call get_src_pypi,/2.7/z/zope.interface,zope.interface-3.8.0-py2.7-win32.egg)\ unzip -d $(tmp) $$dld cp -R $(tmp)/zope $(pysite) # Twisted $(call get_src_pypi,2.7/T/Twisted,Twisted-11.0.0.winxp32-py2.7.msi)\ $(msiexec) /qn /a $$dld TARGETDIR=.\\$(pydir) # Nevow $(call get_src_pypi,source/N/Nevow,Nevow-0.10.0.tar.gz)\ tar -C $(tmp) -xzf $$dld for i in nevow formless twisted; do cp -R $(tmp)/Nevow-0.10.0/$$i $(pysite); done # Numpy $(call get_src_pypi,2.7/n/numpy,numpy-1.6.1.win32-py2.7.exe)\ unzip -d $(tmp)/np $$dld ; [ $$? -eq 1 ] #silence error unziping .exe cp -R $(tmp)/np/PLATLIB/* $(pysite) # SimpleJson $(call get_src_pypi,source/s/simplejson,simplejson-2.2.1.tar.gz)\ tar -C $(tmp) -xzf $$dld cp -R $(tmp)/simplejson-2.2.1/simplejson/ $(pysite) # WxGlade $(call get_src_http,https://bitbucket.org/agriggio/wxglade/get,b0247325407e.zip)\ unzip -d $(tmp) $$dld mv $(tmp)/agriggio-wxglade-b0247325407e $(pysite)/wxglade # Pyro $(call get_src_pypi,source/P/Pyro,Pyro-3.9.1.tar.gz)\ tar -C $(tmp) -xzf $$dld mv $(tmp)/Pyro-3.9.1/Pyro $(pysite) # Lxml $(call get_src_pypi,2.7/l/lxml,lxml-3.2.3.win32-py2.7.exe)\ unzip -d $(tmp)/lxml $$dld ; [ $$? -eq 1 ] #silence error unziping .exe cp -R $(tmp)/lxml/PLATLIB/* $(pysite) touch $@ matiecdir = build/matiec matiec: |build $(call get_src_hg,$(tmp)/matiec) cd $(tmp)/matiec ;\ autoreconf;\ ./configure --host=i586-mingw32msvc;\ make -j$(CPUS); rm -rf $(matiecdir) mkdir -p $(matiecdir) mv $(tmp)/matiec/*.exe $(matiecdir) mv $(tmp)/matiec/lib $(matiecdir) touch $@ examples: |build rm -rf examples mkdir -p examples beremiz: | build examples $(call get_src_hg,build/beremiz) $(call tweak_beremiz_targets) rm -rf examples/canopen_tests mkdir -p examples/canopen_tests mv build/beremiz/tests/canopen_* examples/canopen_tests rm -rf examples/base_tests mkdir -p examples/base_tests mv build/beremiz/tests/* examples/base_tests touch $@ beremiz_etherlab_plugin: beremiz | examples $(call get_src_hg,$(tmp)/beremiz_etherlab_plugin) rm -rf examples/ethercat_tests mv $(tmp)/beremiz_etherlab_plugin/ethercat_tests examples/ rm -rf build/EthercatMaster mv $(tmp)/beremiz_etherlab_plugin/etherlab build/EthercatMaster touch $@ CFbuild = build/CanFestival-3 CFconfig = $(CFbuild)/objdictgen/canfestival_config.py canfestival: mingw rm -rf $(CFbuild) $(call get_src_hg,$(CFbuild)) cd $(CFbuild); \ ./configure --can=tcp_win32 \ --cc=i586-mingw32msvc-gcc \ --cxx=i586-mingw32msvc-g++ \ --target=win32 \ --wx=0 $(MAKE) -C $(CFbuild) cd $(CFbuild); find . -name "*.o" -exec rm {} ';' #remove object files only touch $@ targets=python mingw matiec beremiz Beremiz-$(version).exe: $(targets) $(src)/license.txt $(src)/install.nsi $(targets_ex) sed -e 's/\$$BVERSION/$(version)/g' $(src)/license.txt > build/license.txt sed -e 's/\$$BVERSION/$(version)/g' $(src)/install.nsi |\ sed -e 's/\$$BEXTENSIONS/$(extensions)/g' |\ makensis - clean_installer: rm -rf build Beremiz-$(version).exe $(targets) $(targets_ex)