view Makefile.cross-mingw @ 789:d61d3eb29053 default tip

Bump copyright.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 08 Mar 2024 15:26:24 +0200
parents 94e8e6ad8c9e
children
line wrap: on
line source

###
### For Win32/Win64 version cross-compilation via MinGW
### compiler suite under Linux/Unix
###
#
# make -f Makefile.cross-mingw MINGW=64
#

ifeq ($(MINGW),64)
BINTOOL_PREFIX ?= x86_64-w64-mingw32-
OBJPATH ?= ./obj/win64/
else
BINTOOL_PREFIX ?= i686-w64-mingw32-
OBJPATH ?= ./obj/win32/
endif


# Miscellaneous
PREFIX =
BINPATH = ./
BINEXT = .exe

# Compiler flags and linker flags
CFLAGS += \
	-mconsole \
	-DTH_BYTEORDER=TH_LITTLE_ENDIAN \
	-DHAVE_STRING_H \
	-DHAVE_STDBOOL_H \
	-DHAVE_INTTYPES_H

LDFLAGS +=

include Makefile.common