mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
5b438bd248
svn-id: r4629
21 lines
535 B
Makefile
21 lines
535 B
Makefile
# $Header$
|
|
|
|
CC = arm-linux-g++
|
|
CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar
|
|
DEFINES = -DUNIX -DCOMPRESSED_SOUND_FILE -DBYPASS_COPY_PROT -DQTOPIA -DSCUMM_NEED_ALIGNMENT
|
|
LDFLAGS :=
|
|
INCLUDES:= `/opt/Qtopia/sharp/bin/sdl-config --cflags` -I./ -I./sound
|
|
CPPFLAGS= $(DEFINES) $(INCLUDES)
|
|
|
|
# Add -lmad for -DCOMPRESSED_SOUND_FILE
|
|
LIBS = `/opt/Qtopia/sharp/bin/sdl-config --libs` -lmad
|
|
#-lncurses
|
|
|
|
OBJS = sdl.o
|
|
|
|
include Makefile.common
|
|
|
|
dist:
|
|
rm -f $(ZIPFILE)
|
|
zip -q $(ZIPFILE) $(DISTFILES)
|