author | Edouard Tisserant 7BB06627 <edouard.tisserant@gmail.com> |
Sun, 15 Jan 2017 22:22:32 +0100 | |
changeset 18 | efd809f369c6 |
parent 17 | 97a78502b383 |
parent 8 | b7e0285edfa8 |
child 19 | 4cd3af22787e |
permissions | -rw-r--r-- |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
1 |
#! gmake |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
2 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
3 |
# This is Makefile for Beremiz installer |
2
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
4 |
# |
14
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
5 |
# Invoke with "make -f path/to/Makefile" on a linux box |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
6 |
# in directory where build should happen. |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
7 |
# |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
8 |
# All those dependencies have to be installed : |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
9 |
# |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
10 |
# Windows installer : |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
11 |
# - wine (tested with 1.2 and 1.6. Fail with 1.4) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
12 |
# - mingw32 |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
13 |
# - flex |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
14 |
# - bison |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
15 |
# - tar |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
16 |
# - unrar |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
17 |
# - wget |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
18 |
# - nsis |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
19 |
# - libtool |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
20 |
# - xmlstarlet |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
21 |
# - xsltproc |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
22 |
# - python-lxml |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
23 |
# |
2
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
24 |
# WARNING : DISPLAY variable have to be defined to a valid X server |
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
25 |
# in case it would be a problem, run : |
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
26 |
# xvfb-run make -f /path/to/this/Makefile |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
27 |
|
16 | 28 |
version = 1.2-rc1 |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
29 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
30 |
HGROOT := ~/src |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
31 |
GITROOT := $(HGROOT) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
32 |
HGPULL = 0 |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
33 |
DIST = |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
34 |
CPUS = 8 |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
35 |
BLKDEV=/dev/null |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
36 |
|
12
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
37 |
|
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
38 |
CROSS_COMPILE=i686-w64-mingw32 |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
39 |
CROSS_COMPILE_LIBS_DIR=/usr/lib/gcc/$(CROSS_COMPILE)/6.1-win32 |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
40 |
CC=$(CROSS_COMPILE)-gcc |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
41 |
CXX=$(CROSS_COMPILE)-g++ |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
42 |
|
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
43 |
define get_runtime_libs |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
44 |
cp $(CROSS_COMPILE_LIBS_DIR)/libgcc_s_sjlj-1.dll $(1) |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
45 |
cp $(CROSS_COMPILE_LIBS_DIR)/libstdc++-6.dll $(1) |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
46 |
endef |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
47 |
|
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
48 |
src := $(shell dirname $(lastword $(MAKEFILE_LIST))) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
49 |
distfiles = $(src)/distfiles |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
50 |
sfmirror = downloads |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
51 |
tmp := $(shell mktemp -d) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
52 |
|
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
53 |
ifeq ("$(HGPULL)","1") |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
54 |
define hg_get_archive |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
55 |
hg -R $(HGROOT)/`basename $(1)` pull |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
56 |
hg -R $(HGROOT)/`basename $(1)` update $(2) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
57 |
hg -R $(HGROOT)/`basename $(1)` archive $(1) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
58 |
endef |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
59 |
else |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
60 |
define hg_get_archive |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
61 |
hg -R $(HGROOT)/`basename $(1)` archive $(2) $(1) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
62 |
endef |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
63 |
endif |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
64 |
|
15
db66054a2ff3
create and add file with revision information for Beremiz
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
14
diff
changeset
|
65 |
define hg_get_rev_num |
db66054a2ff3
create and add file with revision information for Beremiz
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
14
diff
changeset
|
66 |
hg -R $(HGROOT)/`basename $(1)` id -i | sed 's/\+//' > $(2) |
db66054a2ff3
create and add file with revision information for Beremiz
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
14
diff
changeset
|
67 |
endef |
db66054a2ff3
create and add file with revision information for Beremiz
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
14
diff
changeset
|
68 |
|
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
69 |
define get_src_hg |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
70 |
rm -rf $(1) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
71 |
$(call hg_get_archive, $(1), $(2)) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
72 |
endef |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
73 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
74 |
define get_src_git |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
75 |
rm -rf $(1) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
76 |
mkdir $(1) |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
77 |
(cd $(GITROOT)/`basename $(1)`; git archive --format=tar $(2)) | tar -C $(1) -x |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
78 |
endef |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
79 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
80 |
define get_src_http |
5 | 81 |
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`) ) ) && |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
82 |
endef |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
83 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
84 |
define get_src_pypi |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
85 |
$(call get_src_http,http://pypi.python.org/packages/$(1),$(2)) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
86 |
endef |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
87 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
88 |
define get_src_sf |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
89 |
$(call get_src_http,http://$(sfmirror).sourceforge.net/project/$(1),$(2)) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
90 |
endef |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
91 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
92 |
all: Beremiz-$(version).exe $(targets_add) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
93 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
94 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
95 |
ifneq ("$(DIST)","") |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
96 |
include $(src)/$(DIST).mk |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
97 |
endif |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
98 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
99 |
CUSTOM := public |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
100 |
CUSTOM_DIR := $(src) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
101 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
102 |
include $(CUSTOM_DIR)/$(CUSTOM).mk |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
103 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
104 |
build: |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
105 |
rm -rf build |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
106 |
mkdir -p build |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
107 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
108 |
# native toolchain, pre-built |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
109 |
mingwdir=build/mingw |
8
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
110 |
|
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
111 |
define get_mingw |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
112 |
$(call get_src_sf,mingw/MinGW/Base/$(1),$(2)) tar -C $(mingwdir) --lzma -xf $$dld |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
113 |
endef |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
114 |
define get_msys |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
115 |
$(call get_src_sf,mingw/MSYS/Base/$(1),$(2)) tar -C $(mingwdir) --lzma -xf $$dld |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
116 |
endef |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
117 |
mingw: |build |
5 | 118 |
rm -rf $(mingwdir) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
119 |
mkdir -p $(mingwdir) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
120 |
# windows.h |
8
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
121 |
$(call get_mingw,w32api/w32api-3.17,w32api-3.17-2-mingw32-dev.tar.lzma) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
122 |
# mingw runtime |
18
efd809f369c6
merged forgotten changeset, necessary to build Makefile based targets in Beremiz
Edouard Tisserant 7BB06627 <edouard.tisserant@gmail.com>
diff
changeset
|
123 |
$(call get_mingw,mingwrt/mingwrt-3.20,mingwrt-3.20-2-mingw32-dll.tar.lzma) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
124 |
# mingw headers and lib |
18
efd809f369c6
merged forgotten changeset, necessary to build Makefile based targets in Beremiz
Edouard Tisserant 7BB06627 <edouard.tisserant@gmail.com>
diff
changeset
|
125 |
$(call get_mingw,mingwrt/mingwrt-3.20,mingwrt-3.20-2-mingw32-dev.tar.lzma) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
126 |
# binutils |
8
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
127 |
$(call get_mingw,binutils/binutils-2.21.53,binutils-2.21.53-1-mingw32-bin.tar.lzma) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
128 |
# C compiler |
8
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
129 |
$(call get_mingw,gcc/Version4/gcc-4.6.1-2,gcc-core-4.6.1-2-mingw32-bin.tar.lzma) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
130 |
# dependencies |
8
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
131 |
$(call get_mingw,gmp/gmp-5.0.1-1,libgmp-5.0.1-1-mingw32-dll-10.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
132 |
$(call get_mingw,mpc/mpc-0.8.1-1,libmpc-0.8.1-1-mingw32-dll-2.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
133 |
$(call get_mingw,mpfr/mpfr-2.4.1-1,libmpfr-2.4.1-1-mingw32-dll-1.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
134 |
$(call get_mingw,gettext/gettext-0.17-1,libintl-0.17-1-mingw32-dll-8.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
135 |
$(call get_mingw,gettext/gettext-0.17-1,libgettextpo-0.17-1-mingw32-dll-0.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
136 |
$(call get_mingw,libiconv/libiconv-1.13.1-1,libiconv-1.13.1-1-mingw32-dll-2.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
137 |
# make, bash, and dependencies |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
138 |
$(call get_msys,bash/bash-3.1.17-3,bash-3.1.17-3-msys-1.0.13-bin.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
139 |
$(call get_msys,coreutils/coreutils-5.97-3,coreutils-5.97-3-msys-1.0.13-bin.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
140 |
$(call get_msys,libiconv/libiconv-1.13.1-2,libiconv-1.13.1-2-msys-1.0.13-bin.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
141 |
$(call get_msys,libiconv/libiconv-1.13.1-2,libiconv-1.13.1-2-msys-1.0.13-dll-2.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
142 |
$(call get_msys,gettext/gettext-0.17-2,libintl-0.17-2-msys-dll-8.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
143 |
$(call get_msys,regex/regex-1.20090805-2,libregex-1.20090805-2-msys-1.0.13-dll-1.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
144 |
$(call get_msys,termcap/termcap-0.20050421_1-2,libtermcap-0.20050421_1-2-msys-1.0.13-dll-0.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
145 |
$(call get_msys,make/make-3.81-3,make-3.81-3-msys-1.0.13-bin.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
146 |
$(call get_msys,msys-core/msys-1.0.13-2,msysCORE-1.0.13-2-msys-1.0.13-bin.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
147 |
$(call get_msys,termcap/termcap-0.20050421_1-2,libtermcap-0.20050421_1-2-msys-1.0.13-dll-0.tar.lzma) |
b7e0285edfa8
Added msys' make, bash and coreutils with mingw binaries
Edouard Tisserant
parents:
6
diff
changeset
|
148 |
touch $@ |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
149 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
150 |
msiexec = WINEPREFIX=$(tmp) msiexec |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
151 |
wine = WINEPREFIX=$(tmp) wine |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
152 |
pydir = build/python |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
153 |
pysite = $(pydir)/Lib/site-packages |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
154 |
|
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
155 |
python: |build |
5 | 156 |
rm -rf $(pydir) |
2
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
157 |
mkdir -p $(pydir) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
158 |
# Python |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
159 |
$(call get_src_http,http://www.python.org/ftp/python/2.7.2,python-2.7.2.msi)\ |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
160 |
$(msiexec) /qn /a $$dld TARGETDIR=.\\$(pydir) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
161 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
162 |
# WxPython (needs running inno unpacker in wine) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
163 |
$(call get_src_sf,innounp/innounp/innounp%200.36,innounp036.rar)\ |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
164 |
unrar e $$dld innounp.exe $(tmp) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
165 |
$(call get_src_sf,wxpython/wxPython/2.8.12.1,wxPython2.8-win32-unicode-2.8.12.1-py27.exe)\ |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
166 |
$(wine) $(tmp)/innounp.exe -d$(tmp) -x $$dld |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
167 |
cp -R $(tmp)/\{code_GetPythonDir\}/* $(pydir) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
168 |
cp -R $(tmp)/\{app\}/* $(pysite) |
2
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
169 |
|
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
170 |
# wxPython fails if VC9.0 bullshit is not fully here. |
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
171 |
$(call get_src_http,http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140,vcredist_x86.exe)\ |
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
172 |
cp $$dld $(tmp) |
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
173 |
$(wine) $(tmp)/vcredist_x86.exe /qn /a |
2d6e92fb19e9
Gave up with legacy dll collection mechanism, and fixed missing VC9 redistributable for winXP SP2
Edouard Tisserant
parents:
1
diff
changeset
|
174 |
cp $(tmp)/drive_c/windows/winsxs/x86_Microsoft.VC90.CRT*/* $(pydir) |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
175 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
176 |
# MathPlotLib |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
177 |
$(call get_src_http,https://github.com/downloads/matplotlib/matplotlib,matplotlib-1.2.0.win32-py2.7.exe)\ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
178 |
unzip -d $(tmp)/mathplotlib $$dld ; [ $$? -eq 1 ] #silence error unziping .exe |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
179 |
cp -R $(tmp)/mathplotlib/PLATLIB/* $(pysite) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
180 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
181 |
# pywin32 |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
182 |
$(call get_src_sf,pywin32/pywin32/Build216,pywin32-216.win32-py2.7.exe)\ |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
183 |
unzip -d $(tmp)/pw32 $$dld ; [ $$? -eq 1 ] #silence error unziping .exe |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
184 |
cp -R $(tmp)/pw32/PLATLIB/* $(pysite) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
185 |
|
11
b82fc7808412
upgrade zope.interface python package to version 4.3.2
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
10
diff
changeset
|
186 |
# zope.interface |
b82fc7808412
upgrade zope.interface python package to version 4.3.2
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
10
diff
changeset
|
187 |
$(call get_src_pypi,9d/2d/beb32519c0bd19bda4ac38c34db417d563ee698518e582f951d0b9e5898b,zope.interface-4.3.2-py2.7-win32.egg)\ |
14
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
188 |
unzip -d $(tmp) $$dld |
3
2ee55ffac580
Added zope.interface to installer so that twisted framework loads (needed by svgui)
Edouard Tisserant
parents:
2
diff
changeset
|
189 |
cp -R $(tmp)/zope $(pysite) |
2ee55ffac580
Added zope.interface to installer so that twisted framework loads (needed by svgui)
Edouard Tisserant
parents:
2
diff
changeset
|
190 |
|
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
191 |
# Twisted |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
192 |
$(call get_src_pypi,2.7/T/Twisted,Twisted-11.0.0.winxp32-py2.7.msi)\ |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
193 |
$(msiexec) /qn /a $$dld TARGETDIR=.\\$(pydir) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
194 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
195 |
# Nevow |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
196 |
$(call get_src_pypi,source/N/Nevow,Nevow-0.10.0.tar.gz)\ |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
197 |
tar -C $(tmp) -xzf $$dld |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
198 |
for i in nevow formless twisted; do cp -R $(tmp)/Nevow-0.10.0/$$i $(pysite); done |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
199 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
200 |
# Numpy |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
201 |
$(call get_src_pypi,2.7/n/numpy,numpy-1.6.1.win32-py2.7.exe)\ |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
202 |
unzip -d $(tmp)/np $$dld ; [ $$? -eq 1 ] #silence error unziping .exe |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
203 |
cp -R $(tmp)/np/PLATLIB/* $(pysite) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
204 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
205 |
# SimpleJson |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
206 |
$(call get_src_pypi,source/s/simplejson,simplejson-2.2.1.tar.gz)\ |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
207 |
tar -C $(tmp) -xzf $$dld |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
208 |
cp -R $(tmp)/simplejson-2.2.1/simplejson/ $(pysite) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
209 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
210 |
# WxGlade |
10
b4cadeffabe4
upgrade wxglade to version: 0.7.2 (2016-10-21)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
6
diff
changeset
|
211 |
|
b4cadeffabe4
upgrade wxglade to version: 0.7.2 (2016-10-21)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
6
diff
changeset
|
212 |
$(call get_src_http,https://bitbucket.org/wxglade/wxglade/get,034d891cc947.zip)\ |
14
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
213 |
unzip -d $(tmp) $$dld |
10
b4cadeffabe4
upgrade wxglade to version: 0.7.2 (2016-10-21)
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
6
diff
changeset
|
214 |
mv $(tmp)/wxglade-wxglade-034d891cc947 $(pysite)/wxglade |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
215 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
216 |
# Pyro |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
217 |
$(call get_src_pypi,source/P/Pyro,Pyro-3.9.1.tar.gz)\ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
218 |
tar -C $(tmp) -xzf $$dld |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
219 |
mv $(tmp)/Pyro-3.9.1/Pyro $(pysite) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
220 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
221 |
# Lxml |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
222 |
$(call get_src_pypi,2.7/l/lxml,lxml-3.2.3.win32-py2.7.exe)\ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
223 |
unzip -d $(tmp)/lxml $$dld ; [ $$? -eq 1 ] #silence error unziping .exe |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
224 |
cp -R $(tmp)/lxml/PLATLIB/* $(pysite) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
225 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
226 |
touch $@ |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
227 |
|
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
228 |
matiecdir = build/matiec |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
229 |
matiec: |build |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
230 |
$(call get_src_hg,$(tmp)/matiec) |
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
231 |
cd $(tmp)/matiec ;\ |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
232 |
autoreconf;\ |
12
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
233 |
automake --add-missing;\ |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
234 |
./configure --host=$(CROSS_COMPILE);\ |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
235 |
make -j$(CPUS); |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
236 |
rm -rf $(matiecdir) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
237 |
mkdir -p $(matiecdir) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
238 |
mv $(tmp)/matiec/*.exe $(matiecdir) |
12
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
239 |
|
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
240 |
# install necessary shared libraries from local cross-compiler |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
241 |
$(call get_runtime_libs,$(matiecdir)) |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
242 |
|
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
243 |
mv $(tmp)/matiec/lib $(matiecdir) |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
244 |
touch $@ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
245 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
246 |
examples: |build |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
247 |
rm -rf examples |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
248 |
mkdir -p examples |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
249 |
|
14
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
250 |
beremiz: | build examples |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
251 |
$(call get_src_hg,build/beremiz) |
15
db66054a2ff3
create and add file with revision information for Beremiz
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
14
diff
changeset
|
252 |
$(call hg_get_rev_num,beremiz,build/beremiz/revision) |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
253 |
$(call tweak_beremiz_targets) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
254 |
rm -rf examples/canopen_tests |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
255 |
mkdir -p examples/canopen_tests |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
256 |
mv build/beremiz/tests/canopen_* examples/canopen_tests |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
257 |
rm -rf examples/base_tests |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
258 |
mkdir -p examples/base_tests |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
259 |
mv build/beremiz/tests/* examples/base_tests |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
260 |
touch $@ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
261 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
262 |
CFbuild = build/CanFestival-3 |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
263 |
CFconfig = $(CFbuild)/objdictgen/canfestival_config.py |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
264 |
canfestival: mingw |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
265 |
rm -rf $(CFbuild) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
266 |
$(call get_src_hg,$(CFbuild)) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
267 |
cd $(CFbuild); \ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
268 |
./configure --can=tcp_win32 \ |
12
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
269 |
--cc=$(CC) \ |
1cea304b3e88
use global CROSS_COMPILE prefix to define compilers for matiec and canfestival
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
11
diff
changeset
|
270 |
--cxx=$(CXX) \ |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
271 |
--target=win32 \ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
272 |
--wx=0 |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
273 |
$(MAKE) -C $(CFbuild) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
274 |
cd $(CFbuild); find . -name "*.o" -exec rm {} ';' #remove object files only |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
275 |
touch $@ |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
276 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
277 |
targets=python mingw matiec beremiz |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
278 |
Beremiz-$(version).exe: $(targets) $(src)/license.txt $(src)/install.nsi $(targets_ex) |
0
7bc9d95b92bc
initial commit, 1.03 installs on WinXP, python test builds and works
Edouard Tisserant
parents:
diff
changeset
|
279 |
sed -e 's/\$$BVERSION/$(version)/g' $(src)/license.txt > build/license.txt |
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
280 |
sed -e 's/\$$BVERSION/$(version)/g' $(src)/install.nsi |\ |
14
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
281 |
sed -e 's/\$$BEXTENSIONS/$(extensions)/g' |\ |
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
282 |
makensis - |
8d49ccbdb035
clean up trailing whitespaces and wrong indention
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
13
diff
changeset
|
283 |
|
6
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
284 |
clean_installer: |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
285 |
rm -rf build Beremiz-$(version).exe $(targets) $(targets_ex) |
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
286 |
|
862080d48ef2
Various updates and enhancement in installer build system, including support for specialized distributions, existing in other branches
Edouard Tisserant
parents:
5
diff
changeset
|
287 |