mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-02 15:16:46 +00:00
deef4a5314
svn-id: r9241
72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
# $Header$
|
|
|
|
CXX := c++
|
|
AR := ar cru
|
|
RANLIB := ranlib
|
|
RM := rm -f
|
|
MKDIR := mkdir -p
|
|
ECHO := echo -n
|
|
CAT := cat
|
|
RM := rm -f
|
|
# recursive version of RM
|
|
RM_REC := $(RM) -r
|
|
ZIP := zip -q
|
|
CP := cp
|
|
|
|
#######################################################################
|
|
# Default compilation parameters. Normally don't edit these #
|
|
#######################################################################
|
|
|
|
DEFINES := -DHAVE_CONFIG_H
|
|
LDFLAGS :=
|
|
INCLUDES:= -I. -Icommon
|
|
LIBS :=
|
|
OBJS :=
|
|
|
|
# Load the make rules generated by configure
|
|
include config.mak
|
|
|
|
# Uncomment this for stricter compile time code verification
|
|
# CXXFLAGS+= -Wshadow -Werror
|
|
|
|
CXXFLAGS:= -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas $(CXXFLAGS)
|
|
|
|
#######################################################################
|
|
# Misc stuff - you should normally never have to edit this #
|
|
#######################################################################
|
|
|
|
include Makefile.common
|
|
|
|
dist:
|
|
$(RM) $(ZIPFILE)
|
|
$(ZIP) $(ZIPFILE) $(DISTFILES)
|
|
|
|
deb:
|
|
ln -sf dists/debian;
|
|
debian/prepare
|
|
fakeroot debian/rules binary
|
|
|
|
config.mak:
|
|
./configure
|
|
|
|
# Special target to create a application wrapper for Mac OS X
|
|
bundle_name = ScummVM.app
|
|
bundle: scummvm-static
|
|
mkdir -p $(bundle_name)/Contents/MacOS
|
|
mkdir -p $(bundle_name)/Contents/Resources
|
|
echo "APPL????" > $(bundle_name)/Contents/PkgInfo
|
|
cp Info.plist $(bundle_name)/Contents/
|
|
cp scummvm.icns $(bundle_name)/Contents/Resources/
|
|
cp scummvm-static $(bundle_name)/Contents/MacOS/scummvm
|
|
strip $(bundle_name)/Contents/MacOS/scummvm
|
|
|
|
# Special target to create a static linked binary for Mac OS X
|
|
scummvm-static: $(OBJS)
|
|
$(CXX) $(LDFLAGS) -o scummvm-static $(OBJS) \
|
|
/sw/lib/libSDLmain.a /sw/lib/libSDL.a /sw/lib/libmad.a \
|
|
-framework Cocoa -framework Carbon -framework IOKit \
|
|
-framework OpenGL -framework AGL -framework QuickTime \
|
|
-framework AudioUnit -framework AudioToolbox
|
|
|
|
.PHONY: deb bundle
|