view Makefile.w64 @ 18:ccc5cdce91e3

Remove dead function.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 29 Sep 2012 13:28:11 +0300
parents c12a8dda22bb
children f5c5af85ccfd
line wrap: on
line source

#
# For win32 version cross-compilation with MinGW suite @ Linux
#
MINGW_PREFIX=x86_64-w64-mingw32-
MINGW_PATH=/usr/x86_64-w64-mingw32

BINPATH=./exe/
OBJPATH=./win64/
EXEEXT=-w64.exe

# C-compiler, flags and linker flags
CC=$(MINGW_PREFIX)gcc
AR=$(MINGW_PREFIX)ar
RANLIB=$(MINGW_PREFIX)ranlib
RM=rm

SDL_CFLAGS=`$(MINGW_PATH)/bin/sdl-config --cflags`
SDL_LDFLAGS=`$(MINGW_PATH)/bin/sdl-config --libs` -lSDL -L$(BINPATH)

#CFLAGS=-mwindows
LDFLAGS=-lmingw32 -s


include Makefile.gen