view Makefile.cross-mingw @ 405:964ae4f29138 rel-1_0_0

Rename Makefile.gen to Makefile.common
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Aug 2023 09:02:59 +0300
parents 36621c3fe118
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 += -s
STILGREPC_LDFLAGS += -lole32


include Makefile.common