mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 20:55:19 +00:00
2b50dd2742
svn-id: r4111
20 lines
398 B
Makefile
20 lines
398 B
Makefile
# $Header$
|
|
|
|
CC = g++
|
|
CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar
|
|
DEFINES = -DUNIX
|
|
LDFLAGS :=
|
|
INCLUDES:= `sdl-config --cflags` -I./ -I./sound
|
|
CPPFLAGS= $(DEFINES) $(INCLUDES)
|
|
|
|
# Add -lmad for -DCOMPRESSED_SOUND_FILE
|
|
LIBS = `sdl-config --libs` -lncurses
|
|
|
|
OBJS = sdl.o
|
|
|
|
include Makefile.common
|
|
|
|
dist:
|
|
rm -f $(ZIPFILE)
|
|
zip -q $(ZIPFILE) $(DISTFILES)
|