2008-06-12 12:08:15 +00:00
|
|
|
# This file contains port specific Makefile rules. It is automatically
|
|
|
|
# included by the default (main) Makefile.
|
|
|
|
#
|
|
|
|
# $URL$
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# UNIX specific
|
|
|
|
#
|
|
|
|
install: all
|
|
|
|
$(INSTALL) -d "$(DESTDIR)$(BINDIR)"
|
|
|
|
$(INSTALL) -c -s -m 755 "$(srcdir)/residual$(EXEEXT)" "$(DESTDIR)$(BINDIR)/residual$(EXEEXT)"
|
|
|
|
#$(INSTALL) -d "$(DESTDIR)$(MANDIR)/man6/"
|
|
|
|
#$(INSTALL) -c -m 644 "$(srcdir)/dists/residual.6" "$(DESTDIR)$(MANDIR)/man6/residual.6"
|
|
|
|
#$(INSTALL) -d "$(DESTDIR)$(PREFIX)/share/pixmaps/"
|
|
|
|
#$(INSTALL) -c -m 644 "$(srcdir)/icons/residual.xpm" "$(DESTDIR)$(PREFIX)/share/pixmaps/residual.xpm"
|
|
|
|
#$(INSTALL) -d "$(DESTDIR)$(PREFIX)/share/doc/residual/"
|
|
|
|
$(INSTALL) -c -m 644 "$(srcdir)/AUTHORS" "$(srcdir)/COPYING" "$(srcdir)/COPYRIGHT" "$(srcdir)/NEWS" "$(srcdir)/README" "$(DESTDIR)$(PREFIX)/share/doc/residual/"
|
|
|
|
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/residual/"
|
|
|
|
$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(DATADIR)/residual/"
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm -f "$(DESTDIR)$(BINDIR)/residual$(EXEEXT)"
|
|
|
|
#rm -f "$(DESTDIR)$(MANDIR)/man6/residual.6"
|
|
|
|
#rm -f "$(DESTDIR)$(PREFIX)/share/pixmaps/residual.xpm"
|
|
|
|
#rm -rf "$(DESTDIR)$(PREFIX)/share/doc/residual/"
|
|
|
|
#rm -rf "$(DESTDIR)$(DATADIR)/residual/"
|
|
|
|
|
|
|
|
deb:
|
|
|
|
ln -sf dists/debian;
|
|
|
|
debian/prepare
|
|
|
|
fakeroot debian/rules binary
|
|
|
|
|
|
|
|
|
|
|
|
# Special target to create a application wrapper for Mac OS X
|
|
|
|
bundle_name = Residual.app
|
|
|
|
bundle: scummvm-static $(srcdir)/dists/macosx/Info.plist
|
|
|
|
mkdir -p $(bundle_name)/Contents/MacOS
|
|
|
|
mkdir -p $(bundle_name)/Contents/Resources
|
|
|
|
echo "APPL????" > $(bundle_name)/Contents/PkgInfo
|
|
|
|
cp $(srcdir)/dists/macosx/Info.plist $(bundle_name)/Contents/
|
|
|
|
cp $(srcdir)/icons/residual.icns $(bundle_name)/Contents/Resources/
|
|
|
|
cp $(srcdir)/dists/pred.dic $(bundle_name)/Contents/Resources/
|
|
|
|
cp $(DIST_FILES_THEMES) $(bundle_name)/Contents/Resources/
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(bundle_name)/Contents/Resources/
|
|
|
|
$(srcdir)/tools/credits.pl --rtf > $(bundle_name)/Contents/Resources/Credits.rtf
|
|
|
|
chmod 644 $(bundle_name)/Contents/Resources/*
|
|
|
|
cp residual-static $(bundle_name)/Contents/MacOS/residual
|
|
|
|
chmod 755 $(bundle_name)/Contents/MacOS/residual
|
|
|
|
strip $(bundle_name)/Contents/MacOS/residual
|
|
|
|
|
|
|
|
iphonebundle: $(srcdir)/dists/iphone/Info.plist
|
|
|
|
mkdir -p $(bundle_name)
|
|
|
|
cp $(srcdir)/dists/iphone/Info.plist $(bundle_name)/
|
|
|
|
cp $(srcdir)/dists/pred.dic $(bundle_name)/
|
|
|
|
cp $(DIST_FILES_THEMES) $(bundle_name)/
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(bundle_name)/
|
|
|
|
cp residual $(bundle_name)/Residual
|
|
|
|
cp $(srcdir)/dists/iphone/icon.png $(bundle_name)/icon.png
|
|
|
|
cp $(srcdir)/dists/iphone/Default.png $(bundle_name)/Default.png
|
|
|
|
|
|
|
|
# location of additional libs for OS X usually /sw/ for fink or
|
|
|
|
# /opt/local/ for darwinports
|
|
|
|
OSXOPT=/sw
|
|
|
|
|
|
|
|
# Location of static libs for the iPhone
|
|
|
|
ifeq ($(BACKEND), iphone)
|
|
|
|
OSXOPT=/usr/local/arm-apple-darwin
|
|
|
|
else
|
|
|
|
# Static libaries, used for the scummvm-static and iphone targets
|
|
|
|
OSX_STATIC_LIBS := `$(OSXOPT)/bin/sdl-config --static-libs`
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_VORBIS
|
|
|
|
OSX_STATIC_LIBS += \
|
|
|
|
$(OSXOPT)/lib/libvorbisfile.a \
|
|
|
|
$(OSXOPT)/lib/libvorbis.a \
|
|
|
|
$(OSXOPT)/lib/libogg.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_TREMOR
|
|
|
|
OSX_STATIC_LIBS += $(OSXOPT)/lib/libvorbisidec.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_FLAC
|
|
|
|
OSX_STATIC_LIBS += $(OSXOPT)/lib/libFLAC.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_MAD
|
|
|
|
OSX_STATIC_LIBS += $(OSXOPT)/lib/libmad.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_MPEG2
|
|
|
|
OSX_STATIC_LIBS += $(OSXOPT)/lib/libmpeg2.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Special target to create a static linked binary for Mac OS X.
|
|
|
|
# We use -force_cpusubtype_ALL to ensure the binary runs on every
|
|
|
|
# PowerPC machine.
|
|
|
|
residual-static: $(OBJS)
|
|
|
|
$(CXX) $(LDFLAGS) -force_cpusubtype_ALL -o residual-static $(OBJS) \
|
|
|
|
-framework CoreMIDI \
|
|
|
|
$(OSX_STATIC_LIBS) \
|
|
|
|
-lSystemStubs \
|
|
|
|
-lz
|
|
|
|
# $(OSXOPT)/lib/libz.a
|
|
|
|
|
|
|
|
# Special target to create a static linked binary for the iPhone
|
|
|
|
iphone: $(OBJS)
|
|
|
|
$(CXX) $(LDFLAGS) -o residual $(OBJS) \
|
|
|
|
$(OSX_STATIC_LIBS) \
|
|
|
|
-framework UIKit -framework CoreGraphics -framework CoreSurface \
|
|
|
|
-framework LayerKit -framework GraphicsServices -framework CoreFoundation \
|
|
|
|
-framework Foundation -framework AudioToolbox -framework CoreAudio \
|
|
|
|
-lobjc -lz
|
|
|
|
|
|
|
|
# Special target to create a snapshot disk image for Mac OS X
|
|
|
|
# TODO: Replace AUTHORS by Credits.rtf
|
|
|
|
osxsnap: bundle credits
|
|
|
|
mkdir Residual-snapshot
|
|
|
|
cp $(srcdir)/AUTHORS ./Residual-snapshot/Authors
|
|
|
|
cp $(srcdir)/COPYING ./Residual-snapshot/License
|
|
|
|
cp $(srcdir)/COPYRIGHT ./Residual-snapshot/Copyright\ Holders
|
|
|
|
cp $(srcdir)/NEWS ./Residual-snapshot/News
|
|
|
|
cp $(srcdir)/README ./Residual-snapshot/Residual\ ReadMe
|
|
|
|
/Developer/Tools/SetFile -t ttro -c ttxt ./Residual-snapshot/*
|
|
|
|
/Developer/Tools/CpMac -r $(bundle_name) ./Residual-snapshot/
|
|
|
|
cp $(srcdir)/dists/macosx/DS_Store ./Residual-snapshot/.DS_Store
|
|
|
|
cp $(srcdir)/dists/macosx/background.jpg ./Residual-snapshot/background.jpg
|
|
|
|
/Developer/Tools/SetFile -a V ./Residual-snapshot/.DS_Store
|
|
|
|
/Developer/Tools/SetFile -a V ./Residual-snapshot/background.jpg
|
|
|
|
hdiutil create -ov -format UDZO -imagekey zlib-level=9 -fs HFS+ \
|
|
|
|
-srcfolder Residual-snapshot \
|
|
|
|
-volname "Residual snapshot" \
|
|
|
|
Residual-snapshot.dmg
|
|
|
|
rm -rf Residual-snapshot
|
|
|
|
|
|
|
|
#
|
|
|
|
# Windows specific
|
|
|
|
#
|
|
|
|
|
|
|
|
residualico.o: $(srcdir)/icons/residual.ico
|
|
|
|
$(WINDRES) -I$(srcdir) $(srcdir)/dists/residual.rc residualico.o
|
|
|
|
|
|
|
|
# Special target to create a win32 snapshot binary
|
|
|
|
win32dist: residual$(EXEEXT)
|
|
|
|
mkdir -p $(WIN32PATH)
|
2008-06-12 12:16:50 +00:00
|
|
|
strip residual.exe -o $(WIN32PATH)/residual$(EXEEXT)
|
2008-06-12 12:08:15 +00:00
|
|
|
#cp $(srcdir)/AUTHORS $(WIN32PATH)/AUTHORS.txt
|
|
|
|
cp $(srcdir)/COPYING $(WIN32PATH)/COPYING.txt
|
|
|
|
#cp $(srcdir)/COPYRIGHT $(WIN32PATH)/COPYRIGHT.txt
|
|
|
|
#cp $(srcdir)/NEWS $(WIN32PATH)/NEWS.txt
|
|
|
|
cp $(srcdir)/README $(WIN32PATH)/README.txt
|
|
|
|
cp /usr/local/README-SDL.txt $(WIN32PATH)
|
|
|
|
cp /usr/local/bin/SDL.dll $(WIN32PATH)
|
|
|
|
u2d $(WIN32PATH)/*.txt
|
|
|
|
|
|
|
|
#
|
|
|
|
# AmigaOS specific
|
|
|
|
#
|
|
|
|
|
|
|
|
# Special target to create an AmigaOS snapshot installation
|
|
|
|
aos4dist: residual
|
|
|
|
mkdir -p $(AOS4PATH)
|
|
|
|
strip -R.comment $< -o $(AOS4PATH)/$<_SVN
|
|
|
|
cp icons/residual.info $(AOS4PATH)/$<_SVN.info
|
|
|
|
cp $(DIST_FILES_THEMES) $(AOS4PATH)/themes/
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(AOS4PATH)/extras/
|
|
|
|
#cp $(srcdir)/AUTHORS $(AOS4PATH)/AUTHORS.txt
|
|
|
|
cp $(srcdir)/COPYING $(AOS4PATH)/COPYING.txt
|
|
|
|
#cp $(srcdir)/COPYRIGHT $(AOS4PATH)/COPYRIGHT.txt
|
|
|
|
#cp $(srcdir)/NEWS $(AOS4PATH)/NEWS.txt
|
|
|
|
cp $(srcdir)/README $(AOS4PATH)/README.txt
|
|
|
|
cp /sdk/local/documentation/SDL-1.2.9/README-SDL.txt $(AOS4PATH)
|
|
|
|
|
|
|
|
.PHONY: deb bundle osxsnap win32dist install uninstall
|