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