[go: up one dir, main page]

Menu

[r19]: / Make-Packages.sh  Maximize  Restore  History

Download this file

90 lines (80 with data), 2.3 kB

 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
#!/bin/bash
#
echo =====================================================
echo PACKAGES NAMES
echo =====================================================
PACKAGE_SOURCES="cooldt-1-sources.tar.gz"
PACKAGE_LINUX64="cooldt-1-linux64.tar.gz"
PACKAGE_WIN32_WIN64="cooldt-1-win32-win64.zip"
echo =====================================================
echo CLEAN
echo =====================================================
make -f Makefile clean
make -f Makefile PLATFORM=WIN32 clean
make -f Makefile PLATFORM=WIN64 clean
echo
echo =====================================================
echo BUILD Linux
echo =====================================================
make -f Makefile
echo
echo =====================================================
echo BUILD Win32
echo =====================================================
make -f Makefile PLATFORM=WIN32
echo
echo =====================================================
echo BUILD Win64
echo =====================================================
make -f Makefile PLATFORM=WIN64
echo
echo =====================================================
echo PACKAGE SOURCES
echo =====================================================
rm $PACKAGE_SOURCES
tar --exclude-vcs -zcvf $PACKAGE_SOURCES \
Cooldt.cbp \
CooldtSheet.ods \
CooldtSheet.xls \
example.dat \
gnuplot-script.gp \
LICENSE.txt \
Make-Packages.sh \
Makefile \
MakefileWindows.mak \
README.txt \
RunInterfaceGenerator.mak \
RunInterfaceGeneratorWindows.mak \
source
echo
echo =====================================================
echo PACKAGE FOR LINUX 64
echo =====================================================
rm $PACKAGE_LINUX64
tar -zcvf $PACKAGE_LINUX64 \
cooldt \
CooldtSheet.ods \
example.dat \
gnuplot-script.gp \
LICENSE.txt \
README.txt
echo
echo =====================================================
echo PACKAGE FOR WINDOWS 32/64
echo =====================================================
rm $PACKAGE_WIN32_WIN64
zip -9 $PACKAGE_WIN32_WIN64 \
cooldt.exe \
cooldt.xll \
cooldt-w64.exe \
cooldt-w64.xll \
CooldtSheet.ods \
CooldtSheet.xls \
example.dat \
gnuplot-script.gp \
LICENSE.txt \
README.txt
echo
echo =====================================================
echo END OF Make-Packages
echo =====================================================