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
|
|
|
|
#
|
2011-04-14 10:41:26 +00:00
|
|
|
install:
|
2011-04-10 19:59:04 +00:00
|
|
|
$(INSTALL) -d "$(DESTDIR)$(bindir)"
|
|
|
|
$(INSTALL) -c -s -m 755 "./$(EXECUTABLE)" "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
|
|
|
|
#$(INSTALL) -d "$(DESTDIR)$(mandir)/man6/"
|
|
|
|
#$(INSTALL) -c -m 644 "$(srcdir)/dists/residual.6" "$(DESTDIR)$(mandir)/man6/residual.6"
|
|
|
|
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/pixmaps/"
|
|
|
|
$(INSTALL) -c -m 644 "$(srcdir)/icons/residual.xpm" "$(DESTDIR)$(datarootdir)/pixmaps/residual.xpm"
|
|
|
|
$(INSTALL) -d "$(DESTDIR)$(docdir)"
|
|
|
|
$(INSTALL) -c -m 644 $(DIST_FILES_DOCS) "$(DESTDIR)$(docdir)"
|
|
|
|
$(INSTALL) -d "$(DESTDIR)$(datadir)"
|
|
|
|
$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) "$(DESTDIR)$(datadir)/"
|
|
|
|
#$(INSTALL) -c -m 644 $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(datadir)/"
|
2009-05-25 20:49:53 +00:00
|
|
|
ifdef DYNAMIC_MODULES
|
2011-04-10 19:59:04 +00:00
|
|
|
$(INSTALL) -d "$(DESTDIR)$(libdir)/residual/"
|
|
|
|
$(INSTALL) -c -s -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/residual/"
|
2009-05-25 20:49:53 +00:00
|
|
|
endif
|
2008-06-12 12:08:15 +00:00
|
|
|
|
|
|
|
uninstall:
|
2011-04-10 19:59:04 +00:00
|
|
|
rm -f "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
|
|
|
|
rm -f "$(DESTDIR)$(mandir)/man6/residual.6"
|
|
|
|
rm -f "$(DESTDIR)$(datarootdir)/pixmaps/residual.xpm"
|
|
|
|
rm -rf "$(DESTDIR)$(docdir)"
|
|
|
|
rm -rf "$(DESTDIR)$(datadir)"
|
2009-05-25 20:49:53 +00:00
|
|
|
ifdef DYNAMIC_MODULES
|
2011-04-10 19:59:04 +00:00
|
|
|
rm -rf "$(DESTDIR)$(libdir)/residual/"
|
2009-05-25 20:49:53 +00:00
|
|
|
endif
|
2008-06-12 12:08:15 +00:00
|
|
|
|
|
|
|
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
|
2009-10-05 08:33:46 +00:00
|
|
|
bundle: residual-static
|
2008-06-12 12:08:15 +00:00
|
|
|
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/
|
2009-10-05 08:33:46 +00:00
|
|
|
cp $(DIST_FILES_DOCS) $(bundle_name)/
|
2009-10-10 18:54:25 +00:00
|
|
|
cp $(DIST_FILES_THEMES) $(bundle_name)/Contents/Resources/
|
2011-04-11 00:28:51 +00:00
|
|
|
ifdef DIST_FILES_ENGINEDATA
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(bundle_name)/Contents/Resources/
|
|
|
|
endif
|
2008-06-16 22:54:22 +00:00
|
|
|
$(srcdir)/tools/credits.pl --rtf > $(bundle_name)/Contents/Resources/Credits.rtf
|
2008-06-12 12:08:15 +00:00
|
|
|
chmod 644 $(bundle_name)/Contents/Resources/*
|
|
|
|
cp residual-static $(bundle_name)/Contents/MacOS/residual
|
|
|
|
chmod 755 $(bundle_name)/Contents/MacOS/residual
|
2009-05-25 20:49:53 +00:00
|
|
|
$(STRIP) $(bundle_name)/Contents/MacOS/residual
|
2008-06-12 12:08:15 +00:00
|
|
|
|
2009-10-05 08:33:46 +00:00
|
|
|
iphonebundle: iphone
|
2008-06-12 12:08:15 +00:00
|
|
|
mkdir -p $(bundle_name)
|
|
|
|
cp $(srcdir)/dists/iphone/Info.plist $(bundle_name)/
|
2011-04-10 13:45:37 +00:00
|
|
|
cp $(DIST_FILES_DOCS) $(bundle_name)/
|
2009-10-10 18:54:25 +00:00
|
|
|
cp $(DIST_FILES_THEMES) $(bundle_name)/
|
2011-04-11 00:28:51 +00:00
|
|
|
ifdef DIST_FILES_ENGINEDATA
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(bundle_name)/
|
|
|
|
endif
|
|
|
|
$(STRIP) residual
|
2010-01-21 19:25:03 +00:00
|
|
|
ldid -S residual
|
2011-04-11 00:28:51 +00:00
|
|
|
chmod 755 residual
|
2008-06-12 12:08:15 +00:00
|
|
|
cp residual $(bundle_name)/Residual
|
2011-04-11 13:40:01 +00:00
|
|
|
cp $(srcdir)/dists/iphone/icon.png $(bundle_name)/
|
2011-04-14 10:41:26 +00:00
|
|
|
cp $(srcdir)/dists/iphone/icon-72.png $(bundle_name)/
|
2011-04-11 13:40:01 +00:00
|
|
|
cp $(srcdir)/dists/iphone/Default.png $(bundle_name)/
|
2008-06-12 12:08:15 +00:00
|
|
|
|
|
|
|
# Location of static libs for the iPhone
|
2009-04-04 14:43:23 +00:00
|
|
|
ifneq ($(BACKEND), iphone)
|
2009-04-18 06:45:08 +00:00
|
|
|
# Static libaries, used for the residual-static and iphone targets
|
2009-04-04 14:43:23 +00:00
|
|
|
OSX_STATIC_LIBS := `$(STATICLIBPATH)/bin/sdl-config --static-libs`
|
2008-06-12 12:08:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_VORBIS
|
|
|
|
OSX_STATIC_LIBS += \
|
2009-04-04 14:43:23 +00:00
|
|
|
$(STATICLIBPATH)/lib/libvorbisfile.a \
|
|
|
|
$(STATICLIBPATH)/lib/libvorbis.a \
|
|
|
|
$(STATICLIBPATH)/lib/libogg.a
|
2008-06-12 12:08:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_TREMOR
|
2009-04-04 14:43:23 +00:00
|
|
|
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libvorbisidec.a
|
2008-06-12 12:08:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_FLAC
|
2009-04-04 14:43:23 +00:00
|
|
|
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libFLAC.a
|
2008-06-12 12:08:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_MAD
|
2009-04-04 14:43:23 +00:00
|
|
|
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libmad.a
|
2008-06-12 12:08:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_MPEG2
|
2009-04-04 14:43:23 +00:00
|
|
|
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libmpeg2.a
|
|
|
|
endif
|
|
|
|
|
2011-04-14 10:41:26 +00:00
|
|
|
ifdef USE_PNG
|
|
|
|
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libpng.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_THEORADEC
|
|
|
|
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libtheoradec.a
|
|
|
|
endif
|
|
|
|
|
2010-01-21 19:25:03 +00:00
|
|
|
ifdef USE_ZLIB
|
|
|
|
OSX_ZLIB ?= -lz
|
|
|
|
endif
|
|
|
|
|
2011-04-11 00:28:51 +00:00
|
|
|
ifdef USE_TERMCONV
|
|
|
|
OSX_ICONV ?= -liconv
|
|
|
|
endif
|
|
|
|
|
2008-06-12 12:08:15 +00:00
|
|
|
# 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) \
|
2010-01-21 19:25:03 +00:00
|
|
|
$(OSX_ZLIB) \
|
2011-04-11 09:41:07 +00:00
|
|
|
$(OSX_ICONV) \
|
2010-01-21 19:25:03 +00:00
|
|
|
-lSystemStubs
|
2008-06-12 12:08:15 +00:00
|
|
|
|
|
|
|
# Special target to create a static linked binary for the iPhone
|
|
|
|
iphone: $(OBJS)
|
|
|
|
$(CXX) $(LDFLAGS) -o residual $(OBJS) \
|
|
|
|
$(OSX_STATIC_LIBS) \
|
2009-10-05 08:33:46 +00:00
|
|
|
-framework UIKit -framework CoreGraphics -framework OpenGLES \
|
2009-04-04 14:43:23 +00:00
|
|
|
-framework GraphicsServices -framework CoreFoundation -framework QuartzCore \
|
2008-06-12 12:08:15 +00:00
|
|
|
-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
|
2008-07-05 16:10:08 +00:00
|
|
|
osxsnap: bundle
|
2008-06-12 12:08:15 +00:00
|
|
|
mkdir Residual-snapshot
|
2009-10-05 08:33:46 +00:00
|
|
|
$(srcdir)/tools/credits.pl --text > $(srcdir)/AUTHORS
|
2008-06-12 12:08:15 +00:00
|
|
|
cp $(srcdir)/AUTHORS ./Residual-snapshot/Authors
|
2010-03-14 08:07:27 +00:00
|
|
|
cp $(srcdir)/COPYING ./Residual-snapshot/License\ \(GPL\)
|
2009-04-20 18:52:35 +00:00
|
|
|
cp $(srcdir)/COPYING.LGPL ./Residual-snapshot/License\ \(LGPL\)
|
2008-06-12 12:08:15 +00:00
|
|
|
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/
|
2008-06-16 21:46:32 +00:00
|
|
|
#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
|
2008-06-12 12:08:15 +00:00
|
|
|
hdiutil create -ov -format UDZO -imagekey zlib-level=9 -fs HFS+ \
|
|
|
|
-srcfolder Residual-snapshot \
|
2009-10-05 08:33:46 +00:00
|
|
|
-volname "Residual" \
|
2009-10-09 04:49:20 +00:00
|
|
|
Residual-snapshot.dmg
|
2008-06-12 12:08:15 +00:00
|
|
|
rm -rf Residual-snapshot
|
|
|
|
|
|
|
|
#
|
|
|
|
# Windows specific
|
|
|
|
#
|
|
|
|
|
2008-06-16 06:41:23 +00:00
|
|
|
residualico.o: $(srcdir)/icons/residual.ico
|
2009-10-05 08:33:46 +00:00
|
|
|
$(WINDRES) $(WINDRESFLAGS) -I$(srcdir) $(srcdir)/dists/residual.rc residualico.o
|
2008-06-12 12:08:15 +00:00
|
|
|
|
2009-10-05 08:33:46 +00:00
|
|
|
# Special target to create a win32 snapshot binary
|
2009-04-04 14:43:23 +00:00
|
|
|
win32dist: $(EXECUTABLE)
|
2008-06-12 12:08:15 +00:00
|
|
|
mkdir -p $(WIN32PATH)
|
2009-04-04 14:43:23 +00:00
|
|
|
$(STRIP) $(EXECUTABLE) -o $(WIN32PATH)/$(EXECUTABLE)
|
2009-10-10 18:54:25 +00:00
|
|
|
cp $(DIST_FILES_THEMES) $(WIN32PATH)
|
2011-04-11 00:28:51 +00:00
|
|
|
ifdef DIST_FILES_ENGINEDATA
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(WIN32PATH)
|
|
|
|
endif
|
2008-06-13 12:29:57 +00:00
|
|
|
cp $(srcdir)/AUTHORS $(WIN32PATH)/AUTHORS.txt
|
2010-03-14 08:07:27 +00:00
|
|
|
cp $(srcdir)/COPYING $(WIN32PATH)/COPYING.txt
|
2011-04-10 19:59:04 +00:00
|
|
|
cp $(srcdir)/COPYING.LGPL $(WIN32PATH)/COPYING.LGPL.txt
|
2008-06-13 12:29:57 +00:00
|
|
|
cp $(srcdir)/NEWS $(WIN32PATH)/NEWS.txt
|
2008-06-12 12:08:15 +00:00
|
|
|
cp $(srcdir)/README $(WIN32PATH)/README.txt
|
|
|
|
cp /usr/local/README-SDL.txt $(WIN32PATH)
|
|
|
|
cp /usr/local/bin/SDL.dll $(WIN32PATH)
|
|
|
|
u2d $(WIN32PATH)/*.txt
|
|
|
|
|
2008-07-13 15:08:23 +00:00
|
|
|
# Special target to create a win32 snapshot binary under Debian Linux using cross mingw32 toolchain
|
2009-04-04 14:43:23 +00:00
|
|
|
crosswin32dist: $(EXECUTABLE)
|
2008-07-13 15:08:23 +00:00
|
|
|
mkdir -p ResidualWin32
|
2009-04-04 14:43:23 +00:00
|
|
|
$(STRIP) $(EXECUTABLE) -o ResidualWin32/$(EXECUTABLE)
|
2009-10-10 19:15:14 +00:00
|
|
|
cp $(DIST_FILES_THEMES) ResidualWin32
|
2011-04-11 00:28:51 +00:00
|
|
|
ifdef DIST_FILES_ENGINEDATA
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) ResidualWin32
|
|
|
|
endif
|
2008-07-13 15:08:23 +00:00
|
|
|
cp $(srcdir)/AUTHORS ResidualWin32/AUTHORS.txt
|
2010-03-14 08:07:27 +00:00
|
|
|
cp $(srcdir)/COPYING ResidualWin32/COPYING.txt
|
2011-04-10 19:59:04 +00:00
|
|
|
cp $(srcdir)/COPYING.LGPL ResidualWin32/COPYING.LGPL.txt
|
2008-07-13 15:08:23 +00:00
|
|
|
cp $(srcdir)/NEWS ResidualWin32/NEWS.txt
|
|
|
|
cp $(srcdir)/README ResidualWin32/README.txt
|
|
|
|
cp $(srcdir)/dists/residual.iss ResidualWin32
|
|
|
|
cp /usr/i586-mingw32msvc/README-SDL.txt ResidualWin32
|
|
|
|
cp /usr/i586-mingw32msvc/bin/SDL.dll ResidualWin32
|
|
|
|
toms ResidualWin32/*.txt
|
|
|
|
toms ResidualWin32/residual.iss
|
|
|
|
|
2008-06-12 12:08:15 +00:00
|
|
|
#
|
|
|
|
# AmigaOS specific
|
|
|
|
#
|
|
|
|
|
|
|
|
# Special target to create an AmigaOS snapshot installation
|
2009-04-04 14:43:23 +00:00
|
|
|
aos4dist: $(EXECUTABLE)
|
2008-06-12 12:08:15 +00:00
|
|
|
mkdir -p $(AOS4PATH)
|
2011-04-10 19:59:04 +00:00
|
|
|
$(STRIP) $(EXECUTABLE) -o $(AOS4PATH)/$(EXECUTABLE)
|
|
|
|
cp icons/residual.info $(AOS4PATH)/$(EXECUTABLE).info
|
2009-10-10 18:54:25 +00:00
|
|
|
cp $(DIST_FILES_THEMES) $(AOS4PATH)/themes/
|
2011-04-11 00:28:51 +00:00
|
|
|
ifdef DIST_FILES_ENGINEDATA
|
|
|
|
cp $(DIST_FILES_ENGINEDATA) $(AOS4PATH)/extras/
|
|
|
|
endif
|
2011-04-14 10:41:26 +00:00
|
|
|
cp $(DIST_FILES_DOCS) $(AOS4PATH)
|
2009-10-05 08:33:46 +00:00
|
|
|
|
|
|
|
# Mark special targets as phony
|
|
|
|
.PHONY: deb bundle osxsnap win32dist install uninstall
|
2008-06-12 12:08:15 +00:00
|
|
|
|
2009-06-18 11:52:26 +00:00
|
|
|
#
|
2009-10-05 08:33:46 +00:00
|
|
|
# ARM specific
|
2009-06-18 11:52:26 +00:00
|
|
|
#
|
2009-10-05 08:33:46 +00:00
|
|
|
ifdef USE_TREMOLO
|
|
|
|
DEFINES += -DUSE_TREMOR -DUSE_VORBIS -DUSE_TREMOLO
|
|
|
|
LIBS += -ltremolo
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef USE_ARM_SMUSH_ASM
|
|
|
|
DEFINES += -DUSE_ARM_SMUSH_ASM
|
|
|
|
endif
|
2009-06-18 11:52:26 +00:00
|
|
|
|
2009-10-05 08:33:46 +00:00
|
|
|
ifdef USE_ARM_SOUND_ASM
|
|
|
|
DEFINES += -DUSE_ARM_SOUND_ASM
|
2009-06-18 11:52:26 +00:00
|
|
|
endif
|
2010-01-21 19:25:03 +00:00
|
|
|
|
|
|
|
ifdef USE_ARM_GFX_ASM
|
|
|
|
DEFINES += -DUSE_ARM_GFX_ASM
|
|
|
|
endif
|
|
|
|
|