mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 11:20:56 +00:00
12 lines
333 B
Makefile
12 lines
333 B
Makefile
### Modify these paths if needed
|
|
SDL_CFLAGS=-I/usr/i586-mingw32msvc/include/SDL
|
|
SDL_LIBS=-L/usr/i586-mingw32msvc/lib -lSDL
|
|
|
|
CXX = i586-mingw32msvc-g++
|
|
CXXFLAGS = -W -Wall -Wno-multichar -I. $(SDL_CFLAGS) # -O2
|
|
LDFLAGS = -W -Wall # -O2
|
|
LIBS = -lmingw32 -lopengl32 -lglu32 -lgdi32 $(SDL_LIBS) -lz
|
|
EXEEXT =.exe
|
|
|
|
include Makefile.common
|