Artifact a8929670d9adff8bbf1f789e3c5cd4f7b2d9c5bb
File
Makefile.w32
part of check-in
[fb1fa7f1a6]
- Make it easier to do out of source builds by optionally including config.mak or config.w32.
by
jeremy_c on
2009-12-09 22:05:46.
Also file
Makefile.w32
part of check-in
[1c2d878d12]
- Merge with trunk
by
btheado on
2009-12-13 01:16:13.
#!/usr/bin/make
#
#### The toplevel directory of the source tree. Fossil can be built
# in a directory that is separate from the source tree. Just change
# the following to point from the build directory to the src/ folder.
#
SRCDIR = ./src
#### C Compiler and options for use in building executables that
# will run on the platform that is doing the build. This is used
# to compile code-generator programs as part of the build process.
# See TCC below for the C compiler for building the finished binary.
#
BCC = gcc -g -O2
#### The suffix to add to executable files. ".exe" for windows.
# Nothing for unix.
#
E = .exe
#### 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. This C compiler builds
# the finished binary for fossil. The BCC compiler above is used
# for building intermediate code-generator tools.
#
#TCC = gcc -O6
#TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage
#TCC = gcc -g -Os -Wall
#TCC = gcc -g -Os -Wall -DFOSSIL_I18N=0 -L/usr/local/lib -I/usr/local/include
TCC = gcc -Os -Wall -DFOSSIL_I18N=0 -L/mingw/lib -I/mingw/include
#### Extra arguments for linking the finished binary. Fossil needs
# to link against the Z-Lib compression library. There are no
# other dependencies. We sometimes add the -static option here
# so that we can build a static executable that will run in a
# chroot jail.
#
#LIB = -lz
#LIB = -lz -lws2_32
LIB = -lmingwex -lz -lws2_32
#### Tcl shell for use in running the fossil testsuite.
#
TCLSH = tclsh
#### Include a configuration file that can override any one of these settings.
#
-include config.w32
# You should not need to change anything below this line
###############################################################################
include $(SRCDIR)/main.mk