# $Header$ CXX := c++ AR := ar cru RANLIB := ranlib MKDIR := mkdir -p ECHO := printf CAT := cat RM := rm -f RM_REC := $(RM) -r ZIP := zip -q CP := cp WIN32PATH=C:/scummvm ####################################################################### # Default compilation parameters. Normally don't edit these # ####################################################################### srcdir ?= . DEFINES := -DHAVE_CONFIG_H LDFLAGS := INCLUDES := -I. -I$(srcdir) -I$(srcdir)/common LIBS := OBJS := MODULES := MODULE_DIRS := # Load the make rules generated by configure include config.mak # Uncomment this for stricter compile time code verification # CXXFLAGS+= -Werror CXXFLAGS:= -Wall $(CXXFLAGS) CXXFLAGS+= -O -Wuninitialized CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas # Even more warnings... CXXFLAGS+= -pedantic -Wpointer-arith -Wcast-qual -Wconversion CXXFLAGS+= -Wshadow -Wimplicit -Wundef -Wnon-virtual-dtor CXXFLAGS+= -Wno-reorder -Wwrite-strings -fcheck-new -Wctor-dtor-privacy ####################################################################### # Misc stuff - you should never have to edit this # ####################################################################### EXECUTABLE := scummvm$(EXEEXT) include $(srcdir)/Makefile.common # check if configure has been run or has been changed since last run config.mak: $(srcdir)/configure @echo "You need to run ./configure before you can run make" @echo "Either you haven't run it before or it has changed." @echo "If you cannot run configure, use 'make -f Makefile.noconf'" @exit 1 scummvmico.o: scummvm.ico windres scummvm.rc scummvmico.o dist: $(RM) $(ZIPFILE) $(ZIP) $(ZIPFILE) $(DISTFILES) deb: ln -sf dists/debian; debian/prepare fakeroot debian/rules binary ####################################################################### # Unit/regression tests # # In order to use 'make test' you have to install cxxtest inside the # # test/cxxtest dir. Get it from http://cxxtest.sourceforge.net. # ####################################################################### CXXTEST := test/cxxtest TESTS := test/common/*.h CPPFLAGS += -I$(CXXTEST) test: runner ./runner runner: runner.o common/libcommon.a $(CXX) -o $@ $+ runner.cpp: $(TESTS) $(CXXTEST)/cxxtestgen.py --error-printer -o $@ $+ # 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 $(srcdir)/Info.plist $(bundle_name)/Contents/ cp $(srcdir)/scummvm.icns $(bundle_name)/Contents/Resources/ cp $(srcdir)/scummvm-static $(bundle_name)/Contents/MacOS/scummvm strip $(bundle_name)/Contents/MacOS/scummvm # location of additional libs for OS X usually /sw/ for fink or # /opt/local/ for darwinports OSXOPT=/sw # Special target to create a static linked binary for Mac OS X scummvm-static: $(OBJS) $(CXX) $(LDFLAGS) -o scummvm-static $(OBJS) \ `sdl-config --static-libs` \ $(OSXOPT)/lib/libmad.a \ $(OSXOPT)/lib/libvorbisfile.a \ $(OSXOPT)/lib/libvorbis.a \ $(OSXOPT)/lib/libogg.a \ $(OSXOPT)/lib/libmpeg2.a \ $(OSXOPT)/lib/libFLAC.a \ -lz # Special target to create a snapshot disk image for Mac OS X osxsnap: bundle mkdir ScummVM-snapshot cp README ./ScummVM-snapshot/ScummVM\ ReadMe cp NEWS ./ScummVM-snapshot/News cp COPYING ./ScummVM-snapshot/License /Developer/Tools/SetFile -t TEXT -c ttxt ./ScummVM-snapshot/* /Developer/Tools/CpMac -r $(bundle_name) ./ScummVM-snapshot/ hdiutil create -ov -format UDZO -srcfolder ScummVM-snapshot ScummVM-snapshot.dmg rm -rf ScummVM-snapshot # Special target to create a win32 snapshot binary win32dist: scummvm$(EXEEXT) mkdir -p $(WIN32PATH) strip scummvm.exe -o $(WIN32PATH)/scummvm$(EXEEXT) cp COPYING $(WIN32PATH)/copying.txt cp README $(WIN32PATH)/readme.txt cp NEWS $(WIN32PATH)/news.txt cp SDL/README-SDL.txt $(WIN32PATH) cp SDL/lib/SDL.dll $(WIN32PATH) u2d $(WIN32PATH)/*.txt .PHONY: deb bundle test