blob: f20ef1cc96410acc5e596e810127037bb1817eda (
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
|
#!/bin/sh
set -e
WARPIN="d:\prg\WarpIN"
DLLPATH="d:\prg\emx\dll"
DLLS="bz2.dll cryptssl.dll jpeg.dll lzma.dll png.dll open_ssl.dll z.dll"
FILES="AUTHORS BRAILLE_HOWTO COPYING KEYS README links.exe"
CC="gcc.exe"
export CC
CFLAGS="-Wall -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -O2 -pipe -ansi -U__STRICT_ANSI__ -fno-common"
export CFLAGS
rc -r linksos2.rc linksos2.res
if [ ! -f Makefile -o ! -f config.h ]; then
LIBS=linksos2.res
export LIBS
bash ./configure --enable-graphics --without-x --disable-utf8 --disable-debuglevel
fi
make
emxbind -a links.exe -h192
for i in $DLLS; do
cp "$DLLPATH\\$i" .
done
rm -f links.wpi
cmd /c set BEGINLIBPATH="$WARPIN" \& "$WARPIN\wic.exe" -a links.wpi 1 $FILES $DLLS -s links.wis
rm -rf links links.zip
mkdir links
cp $FILES $DLLS links
pkzip /Add /Recurse /Path /NoExtended links.zip links\\
rm -rf links
rm $DLLS
|