view Makefile.cross-mingw @ 751:3091fd1987e9

Rename function argument.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 09 Jan 2023 09:49:13 +0200
parents 7de6eb6d427c
children 94e8e6ad8c9e
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.gen