view Makefile.w32 @ 291:8aa854546556

Bump version.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 09 Jan 2020 10:54:57 +0200
parents a5bc27d26174
children 4c00b579d7ac
line wrap: on
line source

#
# For win32 version cross-compilation with MinGW suite @ Linux
#

# Compiler, flags and linker flags
BINTOOL_PREFIX=i686-w64-mingw32-

CFLAGS += -mconsole \
	-DTH_BYTEORDER=TH_LITTLE_ENDIAN \
	-D_NO_BOOL_TYPEDEF \
	-DHAVE_STRING_H \
	-DHAVE_STDINT_H

LDFLAGS += -s

# Miscellaneous
BINEXT=.exe
OBJPATH=./obj/win32/
BINPATH=./


###
### Stuff
###
include Makefile.gen