view Makefile.w32 @ 320:e315bed7d791

Minor cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 11 Jan 2020 20:18:24 +0200
parents 4c00b579d7ac
children
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_INTTYPES_H

LDFLAGS += -s

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


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