view Makefile.gwin @ 25:f896fe6a98da

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 15 Mar 2013 23:35:52 +0200
parents 702fb015c844
children
line wrap: on
line source

#
# Generic Windows cross-compilation with MinGW suite @ Linux
# (included from Makefile.w32/w64)
#

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

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

CFLAGS = -march=pentium-m
LDFLAGS = -lmingw32


include Makefile.gen