blob: c01fd42176728b9637324914429d9137deadcef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = $(exec_prefix)/lib
#libdir = @libdir@
includedir = @includedir@
datarootdir = @datarootdir@
datadir = @datadir@
mandir = @mandir@
OS = @OS@
ARCH = @ARCH@
EXEEXT = @EXEEXT@
JOBS = @CORES@
ENABLE64BIT = @ENABLE64BIT@
TARGET = @TARGET@
CONFIGFLAGS =CC=$(TARGET)-gcc AR=$(TARGET)-ar
ASTFLAGS = CFLAGS=-DCMINPACK_NO_DLL
XPAFLAGS = CFLAGS=-DSTATIC_BUILD
TCLXMLFLAGS = --with-xml-static=yes
TLSFLAGS ="CFLAGS=-DNO_IDEA=1 -DNO_RC5=1" --with-ssl-dir=$(prefix)/openssl
include ./make.include
WITHTCL = TEA_PLATFORM=windows --with-tcl=$(prefix)/tcl$(TCL_VERSION)/win $(ENABLE64BIT)
WITHTK = --with-tk=$(prefix)/tk$(TCL_VERSION)/win $(WITHTCL)
CACHE = --config-cache --cache-file=$(prefix)/config.cache
#--------------------------defines
DS9APP =SAOImageDS9\ $(DS9_VERSION)
#--------------------------build
.PHONY : saods9 tcl tk tkwin libxml2 openssl
saods9 : dirs tcl tk \
libxml2 openssl \
tcliis tls tclxml xpa \
tkblt tktable tkimg \
tkmpeg tkhtml1 tkcon \
tkwin \
tksao ds9
# posix- tclsignal
# no symbols
tcl : tcl$(TCL_VERSION)/win/Makefile
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tcl$(TCL_VERSION)/win -j $(JOBS)
$(MAKE) -C tcl$(TCL_VERSION)/win install
tcl$(TCL_VERSION)/win/Makefile :
@echo ""
@echo "*** $@ ***"
cd tcl$(TCL_VERSION)/win; \
./configure \
$(ENABLE64BIT) \
--prefix $(prefix) --exec-prefix $(exec_prefix) --libdir $(libdir) \
--disable-shared \
$(CACHE) \
TEA_PLATFORM=windows
tk : tk$(TCL_VERSION)/win/Makefile
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tk$(TCL_VERSION)/win -j $(JOBS) install
tk$(TCL_VERSION)/win/Makefile :
@echo ""
@echo "*** $@ ***"
cd tk$(TCL_VERSION)/win; \
./configure \
$(WITHTCL) \
$(TKFLAGS) \
--prefix $(prefix) --exec-prefix $(exec_prefix) --libdir $(libdir) \
--disable-shared --enable-symbols \
$(CACHE)
tkwin: tkwin/Makefile
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tkwin install
tkwin/Makefile :
@echo ""
@echo "*** $@ ***"
cd tkwin; \
./configure \
$(WITHTK) \
--prefix $(prefix) --exec-prefix $(exec_prefix) \
--disable-shared --enable-symbols \
$(CACHE)
libxml2 : libxml2/win32/config.mingw
@echo ""
@echo "*** $@ ***"
$(CONFIGFLAGS) $(MAKE) -e -C libxml2/win32 -j $(JOBS) -f Makefile.mingw dep
$(CONFIGFLAGS) $(MAKE) -e -C libxml2/win32 -j $(JOBS) -f Makefile.mingw libxmla
cp -p libxml2/win32/bin.mingw/libxml2.a $(libdir)
cp -rp libxml2/include $(includedir)/libxml2
libxml2/win32/config.mingw :
@echo ""
@echo "*** $@ ***"
cd libxml2/win32; \
cscript configure.js trio=no threads=no ftp=yes http=yes html=yes c14n=yes catalog=yes docb=yes xpath=yes xptr=yes xinclude=yes iconv=no icu=no iso8859x=no zlib=no lzma=no xml_debug=yes mem_debug=yes run_debug=no regexps=yes modules=no tree=yes reader=yes writer=yes walker=yes pattern=yes push=yes valid=yes sax1=yes legacy=yes output=yes schemas=yes schematron=yes python=no compiler=mingw static=yes prefix="..\.." bindir="..\..\bin" incdir="..\..\include" libdir="..\..\lib"
openssl : openssl/Makefile
@echo ""
@echo "*** $@ ***"
$(MAKE) -C openssl -j $(JOBS)
openssl/Makefile:
@echo ""
@echo "*** $@ ***"
cd openssl; \
export CROSS_COMPILE=$(TARGET)-; \
./Configure mingw64 --prefix=$(prefix) shared no-asm
#--------------------------clean
.PHONY : tclclean tkclean osclean libxml2clean opensslclean tkwinclean
tclclean :
@echo ""
@echo "*** tclclean ***"
$(MAKE) -C tcl$(TCL_VERSION)/win clean
tkclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tk$(TCL_VERSION)/win clean
osclean : libxml2clean opensslclean tkwinclean
libxml2clean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C libxml2/win32 -f Makefile.mingw clean
opensslclean:
@echo ""
@echo "*** $@ ***"
$(MAKE) -C openssl clean
tkwinclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tkwin clean
#--------------------------distclean
.PHONY : tcldistclean tkdistclean
.PHONY : osdistclean libxml2distclean openssldistclean tkwindistclean
tcldistclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tcl$(TCL_VERSION)/win distclean
tkdistclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tk$(TCL_VERSION)/win distclean
osdistclean : libxml2distclean openssldistclean tkwindistclean
libxml2distclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C libxml2/win32 -f Makefile.mingw distclean
openssldistclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C openssl clean
rm -f openssl/Makefile
tkwindistclean :
@echo ""
@echo "*** $@ ***"
$(MAKE) -C tkwin distclean
#--------------------------distribution
.PHONY : dist
dist :
$(RM) -f dist/$(DS9APP)\ Install.*
/cygdrive/c/Program\ Files\ \(x86\)/WinZip/wzzip -p -r dist/$(DS9APP)\ Install.zip bin/SAOImageDS9
/cygdrive/c/Program\ Files\ \(x86\)/WinZip\ Self-Extractor/WINZIPSE.EXE dist/$(DS9APP)\ Install.zip -d "C:\SAOImageDS9" -i ds9/win/ds9.ico -le -overwrite -runasuser -c cscript install.vbs
|