diff options
author | Max Horn | 2002-07-25 21:13:01 +0000 |
---|---|---|
committer | Max Horn | 2002-07-25 21:13:01 +0000 |
commit | 5b438bd24819b28f47b1d52e10f3ee7126cf91bf (patch) | |
tree | 83f8756172e73a75324ffcf8b21ed830ffc0d8ed | |
parent | 703ed2267e01c795cafc122b157730bdc5097543 (diff) | |
download | scummvm-rg350-5b438bd24819b28f47b1d52e10f3ee7126cf91bf.tar.gz scummvm-rg350-5b438bd24819b28f47b1d52e10f3ee7126cf91bf.tar.bz2 scummvm-rg350-5b438bd24819b28f47b1d52e10f3ee7126cf91bf.zip |
Added Makefile for Zaurus/Qtopia
svn-id: r4629
-rw-r--r-- | Makefile.qtopia | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.qtopia b/Makefile.qtopia new file mode 100644 index 0000000000..e33cf8451f --- /dev/null +++ b/Makefile.qtopia @@ -0,0 +1,20 @@ +# $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) |