annotate Makefile.w32 @ 34:f5d335771b16

Fix a bug with mixed editBuf->pos vs editBuf->len.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 05 Aug 2008 14:39:21 +0300
parents 728243125263
children 6a3a917303e4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 # For win32 version cross-compilation with MiNGW suite @ Linux
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 #
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 PATH=/usr/local/cross-tools/i386-mingw32/bin:/usr/bin:/bin
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 PREFIX=./win32/
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 BINPATH=./win32/
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 # C-compiler, flags and linker flags
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 CC=gcc
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 CFLAGS=-DHAVE_STRING_H
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 LDFLAGS=-L/usr/local/cross-tools/lib -liberty -lws2_32 -s
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 # Miscellaneous
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 RM=rm
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 EXEEXT=.exe
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16
728243125263 Import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 include Makefile.gen