1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
# -*- Makefile -*-
#
# Makefile.Pandora - Makefile rules for Pandora
#
PNDSDK = $(HOME)/pandora-dev/arm-2011.09
EXESUFFIX =
OBJSUFFIX = .o
.SUFFIXES:
.SUFFIXES: $(OBJSUFFIX) .cpp .h
TARGET = onscripter$(EXESUFFIX)
EXT_OBJS =
# mandatory: SDL, SDL_ttf, SDL_image, SDL_mixer, bzip2, libjpeg
DEFS = -DPANDORA -DLINUX -DBPP16
INCS = -I$(PNDSDK)/usr/include -I$(PNDSDK)/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT
LIBS = -L$(PNDSDK)/usr/lib -Wl,-rpath-link,$(PNDSDK)/usr/lib -lSDL -lpthread -lSDL_ttf -lSDL_image -lSDL_mixer -lbz2 -ljpeg -lm
# recommended: smpeg
DEFS += -DUSE_SMPEG
INCS += -I$(PNDSDK)/usr/include/smpeg
LIBS += -lsmpeg
# recommended: fontconfig (to get default font)
DEFS += -DUSE_FONTCONFIG
LIBS += -lfontconfig
# recommended: OggVorbis
#DEFS += -DUSE_OGG_VORBIS
#LIBS += -logg -lvorbis -lvorbisfile
# optional: Integer OggVorbis
DEFS += -DUSE_OGG_VORBIS -DINTEGER_OGG_VORBIS
LIBS += -lvorbisidec
# optional: support CD audio
DEFS += -DUSE_CDROM
# optional: avifile
#DEFS += -DUSE_AVIFILE
#INCS += `avifile-config --cflags`
#LIBS += `avifile-config --libs`
#TARGET += simple_aviplay$(EXESUFFIX)
#EXT_OBJS += AVIWrapper$(OBJSUFFIX)
# optional: lua
DEFS += -DUSE_LUA
INCS += -I$(PNDSDK)/usr/include
LIBS += -llua -ldl
EXT_OBJS += LUAHandler$(OBJSUFFIX)
# optional: force screen width for PDA
#DEFS += -DPDA_WIDTH=640
DEFS += -DPDA_AUTOSIZE
# optional: enable English mode
#DEFS += -DENABLE_1BYTE_CHAR -DFORCE_1BYTE_CHAR
# for GNU g++
CC = $(PNDSDK)/bin/arm-none-linux-gnueabi-g++
LD = $(PNDSDK)/bin/arm-none-linux-gnueabi-g++ -o
MFLAGS = -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ftree-vectorize -fassociative-math -funsafe-math-optimizations
#CFLAGS = -g -Wall $(MFLAGS) -pipe -c $(INCS) $(DEFS)
CFLAGS = -Os -Wall -fomit-frame-pointer $(MFLAGS) -pipe -c $(INCS) $(DEFS)
# for GCC on PowerPC specfied
#CC = powerpc-unknown-linux-gnu-g++
#LD = powerpc-unknown-linux-gnu-g++ -o
#CFLAGS = -O3 -mtune=G4 -maltivec -mabi=altivec -mpowerpc-gfxopt -mmultiple -mstring -Wall -fomit-frame-pointer -pipe -c $(INCS) $(DEFS)
# for Intel compiler
#CC = icc
#LD = icc -o
#CFLAGS = -O3 -tpp6 -xK -c $(INCS) $(DEFS)
RM = rm -f
include Makefile.onscripter
|