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
|
#!/usr/bin/make
#
#### The toplevel directory of the source tree.
#
SRCDIR = /home/drh/tkhtml/htmlwidget
#### C Compiler and options for use in building executables that
# will run on the platform that is doing the build.
#
BCC = gcc -g -O2
#### Name of the generated static library file
#
LIBNAME = libtkhtml.a
#### The suffix to add to executable files. ".exe" for windows.
# Nothing for unix.
#
E =
#### C Compile and options for use in building executables that
# will run on the target platform. This is usually the same
# as BCC, unless you are cross-compiling.
#
#TCC = gcc -O6
#TCC = gcc -g -O0 -Wall
#TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage
TCC = /opt/mingw/bin/i386-mingw32msvc-gcc -O6 -DSTATIC_BUILD=1
#### Include file directories for Tcl and Tk.
#
INC = -I/home/drh/tcltk/8.4win
#### Extra arguments for linking
#
LIBS =
#### Command used to build a static library
#
AR = /opt/mingw/bin/i386-mingw32msvc-ar r
RANLIB = /opt/mingw/bin/i386-mingw32msvc-ranlib
#### The TCLSH command
#
TCLSH = tclsh
# You should not need to change anything below this line
###############################################################################
include $(SRCDIR)/main.mk
|