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
|
#! /bin/sh
#
# This script builds "tkhtml.dll" for Win95/NT and Tcl/Tk8.1.1-stubs.
# First do "make srcdir; cd srcdir". Then run this script.
#
# Notes:
#
# The tclstub.o and tkstub.o files were obtained by compiling the
# tclStubLib.c and tkStubLib.c files from the Tk8.1.1 distribution
# using cygwin/mingw. Do not use the tclstub81.lib and tkstub81.lib
# files that come with Tcl/Tk from scripts. They won't work.
#
# $Revision: 1.1.1.1 $
#
LIBHOME=/home/drh/tcltk/win32/lib
TCLBASE=/home/drh/tcltk/tcl8.2.3
TKBASE=/home/drh/tcltk/tk8.2.3
TKLIB="$LIBHOME/tkstub82.a"
TCLLIB="$LIBHOME/tclstub82.a"
PATH=$PATH:/opt/cygwin20/bin
CC='i586-cygwin32-gcc -DUSE_TCL_STUBS=1 -DUSE_TK_STUBS -mno-cygwin -O2'
INC="-I. -I$TCLBASE/generic -I$TKBASE/generic"
CMD="rm *.o"
echo $CMD
$CMD
for i in *.c; do
CMD="$CC $INC -c $i"
echo $CMD
$CMD
done
echo 'EXPORTS' >tkhtml.def
echo 'Tkhtml_Init' >>tkhtml.def
CMD="i586-cygwin32-dllwrap \
--def tkhtml.def -v --export-all \
--driver-name i586-cygwin32-gcc \
--dlltool-name i586-cygwin32-dlltool \
--as i586-cygwin32-as \
--target i386-mingw32 -mno-cygwin \
-dllname tkhtml.dll *.o $TKLIB $TCLLIB"
echo $CMD
$CMD
|