scummvm/ports.mk

371 lines
14 KiB
Makefile
Raw Normal View History

# This file contains port specific Makefile rules. It is automatically
# included by the default (main) Makefile.
#
#
2011-06-09 11:17:15 +02:00
# POSIX specific
#
2011-04-14 12:41:26 +02:00
install:
2012-11-18 19:07:46 +01:00
$(INSTALL) -d "$(DESTDIR)$(bindir)"
$(INSTALL) -c -m 755 "./$(EXECUTABLE)" "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
$(INSTALL) -d "$(DESTDIR)$(mandir)/man6/"
$(INSTALL) -c -m 644 "$(srcdir)/dists/residualvm.6" "$(DESTDIR)$(mandir)/man6/residualvm.6"
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/pixmaps/"
$(INSTALL) -c -m 644 "$(srcdir)/icons/residualvm.xpm" "$(DESTDIR)$(datarootdir)/pixmaps/residualvm.xpm"
2014-12-04 20:46:56 +01:00
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/icons/hicolor/scalable/apps/"
$(INSTALL) -c -m 644 "$(srcdir)/icons/residualvm.svg" "$(DESTDIR)$(datarootdir)/icons/hicolor/scalable/apps/residualvm.svg"
2012-11-18 19:07:46 +01:00
$(INSTALL) -d "$(DESTDIR)$(docdir)"
$(INSTALL) -c -m 644 $(DIST_FILES_DOCS) "$(DESTDIR)$(docdir)"
$(INSTALL) -d "$(DESTDIR)$(datadir)"
$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_NETWORKING) $(DIST_FILES_VKEYBD) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(datadir)/"
2016-11-12 12:59:06 +01:00
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/applications"
$(INSTALL) -c -m 644 "$(srcdir)/dists/residualvm.desktop" "$(DESTDIR)$(datarootdir)/applications/residualvm.desktop"
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/appdata"
# $(INSTALL) -c -m 644 "$(srcdir)/dists/residualvm.appdata.xml" "$(DESTDIR)$(datarootdir)/appdata/residualvm.appdata.xml"
2012-12-06 22:47:48 +01:00
# ResidualVM specific
ifdef USE_OPENGL_SHADERS
$(INSTALL) -d "$(DESTDIR)$(datadir)/shaders"
$(INSTALL) -c -m 644 $(DIST_FILES_SHADERS) "$(DESTDIR)$(datadir)/shaders"
endif
2012-11-18 19:07:46 +01:00
ifdef DYNAMIC_MODULES
$(INSTALL) -d "$(DESTDIR)$(libdir)/residualvm/"
$(INSTALL) -c -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/residualvm/"
endif
install-strip:
2011-04-10 21:59:04 +02:00
$(INSTALL) -d "$(DESTDIR)$(bindir)"
$(INSTALL) -c -s -m 755 "./$(EXECUTABLE)" "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
2011-05-28 08:49:12 +02:00
$(INSTALL) -d "$(DESTDIR)$(mandir)/man6/"
2012-01-06 11:37:57 +01:00
$(INSTALL) -c -m 644 "$(srcdir)/dists/residualvm.6" "$(DESTDIR)$(mandir)/man6/residualvm.6"
2011-04-10 21:59:04 +02:00
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/pixmaps/"
2012-01-06 11:37:57 +01:00
$(INSTALL) -c -m 644 "$(srcdir)/icons/residualvm.xpm" "$(DESTDIR)$(datarootdir)/pixmaps/residualvm.xpm"
2014-12-04 21:16:12 +01:00
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/icons/hicolor/scalable/apps/"
$(INSTALL) -c -m 644 "$(srcdir)/icons/residualvm.svg" "$(DESTDIR)$(datarootdir)/icons/hicolor/scalable/apps/residualvm.svg"
2011-04-10 21:59:04 +02:00
$(INSTALL) -d "$(DESTDIR)$(docdir)"
$(INSTALL) -c -m 644 $(DIST_FILES_DOCS) "$(DESTDIR)$(docdir)"
$(INSTALL) -d "$(DESTDIR)$(datadir)"
$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_NETWORKING) $(DIST_FILES_VKEYBD) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(datadir)/"
2016-11-12 12:59:06 +01:00
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/applications"
$(INSTALL) -c -m 644 "$(srcdir)/dists/residualvm.desktop" "$(DESTDIR)$(datarootdir)/applications/residualvm.desktop"
$(INSTALL) -d "$(DESTDIR)$(datarootdir)/appdata"
# $(INSTALL) -c -m 644 "$(srcdir)/dists/residualvm.appdata.xml" "$(DESTDIR)$(datarootdir)/appdata/residualvm.appdata.xml"
2012-12-06 22:47:48 +01:00
# ResidualVM specific
ifdef USE_OPENGL_SHADERS
$(INSTALL) -d "$(DESTDIR)$(datadir)/shaders"
$(INSTALL) -c -m 644 $(DIST_FILES_SHADERS) "$(DESTDIR)$(datadir)/shaders"
endif
2009-05-25 20:49:53 +00:00
ifdef DYNAMIC_MODULES
2012-01-06 11:37:57 +01:00
$(INSTALL) -d "$(DESTDIR)$(libdir)/residualvm/"
$(INSTALL) -c -s -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/residualvm/"
2009-05-25 20:49:53 +00:00
endif
uninstall:
2011-04-10 21:59:04 +02:00
rm -f "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
2012-01-06 11:37:57 +01:00
rm -f "$(DESTDIR)$(mandir)/man6/residualvm.6"
rm -f "$(DESTDIR)$(datarootdir)/pixmaps/residualvm.xpm"
2014-12-04 20:46:56 +01:00
rm -f "$(DESTDIR)$(datarootdir)/icons/hicolor/scalable/apps/residualvm.svg"
2011-04-10 21:59:04 +02:00
rm -rf "$(DESTDIR)$(docdir)"
rm -rf "$(DESTDIR)$(datadir)"
2016-11-12 12:59:06 +01:00
rm -f "$(DESTDIR)$(datarootdir)/applications/scummvm.desktop"
rm -f "$(DESTDIR)$(datarootdir)/appdata/scummvm.appdata.xml"
2009-05-25 20:49:53 +00:00
ifdef DYNAMIC_MODULES
2012-01-06 11:37:57 +01:00
rm -rf "$(DESTDIR)$(libdir)/residualvm/"
2009-05-25 20:49:53 +00:00
endif
2013-07-07 15:29:33 +02:00
#ResidualVM specific:
deb:
ln -sf dists/debian;
debian/prepare
fakeroot debian/rules binary
# Special target to create a application wrapper for Mac OS X
ifdef USE_DOCKTILEPLUGIN
# The NsDockTilePlugIn needs to be compiled in both 32 and 64 bits irrespective of how ScummVM itself is compiled.
# Therefore do not use $(CXXFLAGS) and $(LDFLAGS).
ScummVMDockTilePlugin32.o:
$(CXX) -mmacosx-version-min=10.6 -arch i386 -O2 -c $(srcdir)/backends/taskbar/macosx/dockplugin/dockplugin.m -o ScummVMDockTilePlugin32.o
ScummVMDockTilePlugin32: ScummVMDockTilePlugin32.o
$(CXX) -mmacosx-version-min=10.6 -arch i386 -bundle -framework Foundation -framework AppKit -fobjc-link-runtime ScummVMDockTilePlugin32.o -o ScummVMDockTilePlugin32
ScummVMDockTilePlugin64.o:
$(CXX) -mmacosx-version-min=10.6 -arch x86_64 -O2 -c $(srcdir)/backends/taskbar/macosx/dockplugin/dockplugin.m -o ScummVMDockTilePlugin64.o
ScummVMDockTilePlugin64: ScummVMDockTilePlugin64.o
$(CXX) -mmacosx-version-min=10.6 -arch x86_64 -bundle -framework Foundation -framework AppKit -fobjc-link-runtime ScummVMDockTilePlugin64.o -o ScummVMDockTilePlugin64
ResidualVMDockTilePlugin: ScummVMDockTilePlugin32 ScummVMDockTilePlugin64
lipo -create ScummVMDockTilePlugin32 ScummVMDockTilePlugin64 -output ResidualVMDockTilePlugin
residualvm.docktileplugin: ResidualVMDockTilePlugin
mkdir -p residualvm.docktileplugin/Contents
cp $(srcdir)/dists/macosx/dockplugin/Info.plist residualvm.docktileplugin/Contents
mkdir -p residualvm.docktileplugin/Contents/MacOS
cp ResidualVMDockTilePlugin residualvm.docktileplugin/Contents/MacOS/
chmod 644 residualvm.docktileplugin/Contents/MacOS/ResidualVMDockTilePlugin
endif
2012-01-06 11:37:57 +01:00
bundle_name = ResidualVM.app
ifdef USE_DOCKTILEPLUGIN
bundle: residualvm-static residualvm.docktileplugin
else
2012-01-06 11:37:57 +01:00
bundle: residualvm-static
endif
mkdir -p $(bundle_name)/Contents/MacOS
mkdir -p $(bundle_name)/Contents/Resources
echo "APPL????" > $(bundle_name)/Contents/PkgInfo
2016-01-30 21:18:08 +01:00
sed -e 's/$$(PRODUCT_BUNDLE_IDENTIFIER)/org.residualvm.residualvm/' $(srcdir)/dists/macosx/Info.plist >$(bundle_name)/Contents/Info.plist
2012-01-06 22:56:21 +01:00
ifdef USE_SPARKLE
mkdir -p $(bundle_name)/Contents/Frameworks
cp $(srcdir)/dists/macosx/dsa_pub.pem $(bundle_name)/Contents/Resources/
rm -rf $(bundle_name)/Contents/Frameworks/Sparkle.framework
cp -R $(SPARKLEPATH)/Sparkle.framework $(bundle_name)/Contents/Frameworks/
2012-01-06 22:56:21 +01:00
endif
2012-01-06 11:37:57 +01:00
cp $(srcdir)/icons/residualvm.icns $(bundle_name)/Contents/Resources/
cp $(DIST_FILES_DOCS) $(bundle_name)/Contents/Resources/
2009-10-10 18:54:25 +00:00
cp $(DIST_FILES_THEMES) $(bundle_name)/Contents/Resources/
2016-11-12 12:59:06 +01:00
ifdef DIST_FILES_NETWORKING
cp $(DIST_FILES_NETWORKING) $(bundle_name)/Contents/Resources/
endif
2011-04-11 02:28:51 +02:00
ifdef DIST_FILES_ENGINEDATA
cp $(DIST_FILES_ENGINEDATA) $(bundle_name)/Contents/Resources/
endif
ifdef USE_OPENGL_SHADERS
mkdir -p $(bundle_name)/Contents/Resources/shaders
cp $(DIST_FILES_SHADERS) $(bundle_name)/Contents/Resources/shaders/
2011-04-11 02:28:51 +02:00
endif
$(srcdir)/devtools/credits.pl --rtf > $(bundle_name)/Contents/Resources/AUTHORS.rtf
rm $(bundle_name)/Contents/Resources/AUTHORS
mv $(bundle_name)/Contents/Resources/README.md $(bundle_name)/Contents/Resources/README # ResidualVM
cp $(bundle_name)/Contents/Resources/COPYING.LGPL $(bundle_name)/Contents/Resources/COPYING-LGPL
cp $(bundle_name)/Contents/Resources/COPYING.FREEFONT $(bundle_name)/Contents/Resources/COPYING-FREEFONT
cp $(bundle_name)/Contents/Resources/COPYING.OFL $(bundle_name)/Contents/Resources/COPYING-OFL
cp $(bundle_name)/Contents/Resources/COPYING.BSD $(bundle_name)/Contents/Resources/COPYING-BSD
chmod 644 $(bundle_name)/Contents/Resources/*
ifdef USE_OPENGL_SHADERS
chmod 755 $(bundle_name)/Contents/Resources/shaders
endif
2012-01-06 11:37:57 +01:00
cp residualvm-static $(bundle_name)/Contents/MacOS/residualvm
chmod 755 $(bundle_name)/Contents/MacOS/residualvm
$(STRIP) $(bundle_name)/Contents/MacOS/residualvm
ifdef USE_DOCKTILEPLUGIN
mkdir -p $(bundle_name)/Contents/PlugIns
cp -r residualvm.docktileplugin $(bundle_name)/Contents/PlugIns/
endif
2009-10-05 08:33:46 +00:00
iphonebundle: iphone
mkdir -p $(bundle_name)
cp $(srcdir)/dists/iphone/Info.plist $(bundle_name)/
cp $(DIST_FILES_DOCS) $(bundle_name)/
2009-10-10 18:54:25 +00:00
cp $(DIST_FILES_THEMES) $(bundle_name)/
2016-11-12 12:59:06 +01:00
ifdef DIST_FILES_NETWORKING
cp $(DIST_FILES_NETWORKING) $(bundle_name)/
endif
2011-04-11 02:28:51 +02:00
ifdef DIST_FILES_ENGINEDATA
cp $(DIST_FILES_ENGINEDATA) $(bundle_name)/
endif
ifdef DIST_FILES_VKEYBD
cp $(DIST_FILES_VKEYBD) $(bundle_name)/
2011-04-11 02:28:51 +02:00
endif
2012-01-06 11:37:57 +01:00
$(STRIP) residualvm
ldid -S residualvm
chmod 755 residualvm
2012-01-07 17:27:31 +01:00
cp residualvm $(bundle_name)/ResidualVM
2011-04-11 15:40:01 +02:00
cp $(srcdir)/dists/iphone/icon.png $(bundle_name)/
2011-04-14 12:41:26 +02:00
cp $(srcdir)/dists/iphone/icon-72.png $(bundle_name)/
2011-04-11 15:40:01 +02:00
cp $(srcdir)/dists/iphone/Default.png $(bundle_name)/
# Location of static libs for the iPhone
2009-04-04 14:43:23 +00:00
ifneq ($(BACKEND), iphone)
ifneq ($(BACKEND), ios7)
# Static libaries, used for the scummvm-static and iphone targets
OSX_STATIC_LIBS := `$(SDLCONFIG) --prefix=$(STATICLIBPATH) --static-libs`
2016-11-12 12:59:06 +01:00
ifdef USE_SDL_NET
ifdef USE_SDL2
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libSDL2_net.a
else
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libSDL_net.a
endif
endif
# With sdl2-config we don't always get the OpenGL framework
OSX_STATIC_LIBS += -framework OpenGL
2014-02-16 15:01:08 +01:00
endif
endif
2014-02-16 15:01:08 +01:00
2016-11-12 12:59:06 +01:00
ifdef USE_LIBCURL
OSX_STATIC_LIBS += -lcurl
endif
2012-03-21 05:47:06 +01:00
ifdef USE_FREETYPE2
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libfreetype.a $(STATICLIBPATH)/lib/libbz2.a
2012-03-21 05:47:06 +01:00
endif
ifdef USE_VORBIS
OSX_STATIC_LIBS += \
2009-04-04 14:43:23 +00:00
$(STATICLIBPATH)/lib/libvorbisfile.a \
$(STATICLIBPATH)/lib/libvorbis.a
endif
ifdef USE_TREMOR
2009-04-04 14:43:23 +00:00
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libvorbisidec.a
endif
ifdef USE_FLAC
2009-04-04 14:43:23 +00:00
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libFLAC.a
endif
ifdef USE_OGG
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libogg.a
endif
2012-08-20 08:20:05 +02:00
ifdef USE_FLUIDSYNTH
OSX_STATIC_LIBS += \
2016-01-30 21:18:08 +01:00
-liconv -framework CoreMIDI -framework CoreAudio\
$(STATICLIBPATH)/lib/libfluidsynth.a \
$(STATICLIBPATH)/lib/libglib-2.0.a \
$(STATICLIBPATH)/lib/libintl.a
ifneq ($(BACKEND), iphone)
ifneq ($(BACKEND), ios7)
OSX_STATIC_LIBS += -lreadline -framework AudioUnit
2016-01-30 21:18:08 +01:00
endif
endif
2012-08-20 08:20:05 +02:00
endif
ifdef USE_MAD
2009-04-04 14:43:23 +00:00
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libmad.a
endif
2011-04-14 12:41:26 +02:00
ifdef USE_PNG
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libpng.a
endif
ifdef USE_THEORADEC
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libtheoradec.a
endif
2011-06-09 11:17:15 +02:00
ifdef USE_FAAD
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libfaad.a
endif
2013-07-07 15:29:33 +02:00
ifdef USE_MPEG2
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libmpeg2.a
endif
ifdef USE_A52
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/liba52.a
endif
2013-10-13 11:30:34 +02:00
ifdef USE_JPEG
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libjpeg.a
endif
2010-01-21 19:25:03 +00:00
ifdef USE_ZLIB
2012-01-28 10:44:25 +01:00
OSX_ZLIB ?= $(STATICLIBPATH)/lib/libz.a
2010-01-21 19:25:03 +00:00
endif
2012-01-06 22:56:21 +01:00
ifdef USE_SPARKLE
ifdef MACOSX
ifneq ($(SPARKLEPATH),)
OSX_STATIC_LIBS += -F$(SPARKLEPATH)
endif
OSX_STATIC_LIBS += -framework Sparkle -Wl,-rpath,@loader_path/../Frameworks
2012-01-06 22:56:21 +01:00
endif
endif
2012-01-06 22:56:21 +01:00
# ResidualVM specific:
ifdef USE_GLEW
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libglew.a
endif
2014-09-20 17:32:55 +02:00
# ResidualVM specific:
ifdef USE_ICONV
OSX_STATIC_LIBS += $(STATICLIBPATH)/lib/libiconv.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.
2012-01-06 11:37:57 +01:00
residualvm-static: $(OBJS)
$(CXX) $(LDFLAGS) -force_cpusubtype_ALL -o residualvm-static $(OBJS) \
-framework CoreMIDI \
$(OSX_STATIC_LIBS) \
2014-07-02 01:02:35 +02:00
$(OSX_ZLIB)
2016-01-30 21:18:08 +01:00
# Special target to create a static linked binary for the iPhone (legacy, and iOS 7+)
iphone: $(OBJS)
2012-01-06 11:37:57 +01:00
$(CXX) $(LDFLAGS) -o residualvm $(OBJS) \
$(OSX_STATIC_LIBS) \
2009-10-05 08:33:46 +00:00
-framework UIKit -framework CoreGraphics -framework OpenGLES \
2014-02-16 15:01:08 +01:00
-framework CoreFoundation -framework QuartzCore -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
2012-01-06 11:37:57 +01:00
mkdir ResidualVM-snapshot
cp $(DIST_FILES_DOCS) ./ResidualVM-snapshot/
mv ./ResidualVM-snapshot/COPYING ./ResidualVM-snapshot/License\ \(GPL\)
mv ./ResidualVM-snapshot/COPYING.LGPL ./ResidualVM-snapshot/License\ \(LGPL\)
mv ./ResidualVM-snapshot/COPYING.FREEFONT ./ResidualVM-snapshot/License\ \(FREEFONT\)
mv ./ResidualVM-snapshot/COPYING.OFL ./ResidualVM-snapshot/License\ \(OFL\)
mv ./ResidualVM-snapshot/COPYING.BSD ./ResidualVM-snapshot/License\ \(BSD\)
mv ./ResidualVM-snapshot/COPYING.ISC ./ResidualVM-snapshot/License\ \(ISC\)
mv ./ResidualVM-snapshot/COPYING.LUA ./ResidualVM-snapshot/License\ \(Lua\)
mv ./ResidualVM-snapshot/COPYING.MIT ./ResidualVM-snapshot/License\ \(MIT\)
mv ./ResidualVM-snapshot/COPYING.TINYGL ./ResidualVM-snapshot/License\ \(TinyGL\)
$(XCODETOOLSPATH)/SetFile -t ttro -c ttxt ./ResidualVM-snapshot/*
2012-02-25 20:54:59 +01:00
mkdir ResidualVM-snapshot/doc
cp $(srcdir)/doc/QuickStart ./ResidualVM-snapshot/doc/QuickStart
$(XCODETOOLSPATH)/SetFile -t ttro -c ttxt ./ResidualVM-snapshot/doc/QuickStart
$(XCODETOOLSPATH)/CpMac -r $(bundle_name) ./ResidualVM-snapshot/
2019-06-01 12:28:31 +02:00
# ResidualVM missing background file:
# cp $(srcdir)/dists/macosx/DS_Store ./ResidualVM-snapshot/.DS_Store
# cp $(srcdir)/dists/macosx/background.jpg ./ResidualVM-snapshot/background.jpg
# $(XCODETOOLSPATH)/SetFile -a V ./ResidualVM-snapshot/.DS_Store
# $(XCODETOOLSPATH)/SetFile -a V ./ResidualVM-snapshot/background.jpg
hdiutil create -ov -format UDZO -imagekey zlib-level=9 -fs HFS+ \
2012-01-06 11:37:57 +01:00
-srcfolder ResidualVM-snapshot \
-volname "ResidualVM" \
ResidualVM-snapshot.dmg
rm -rf ResidualVM-snapshot
publish-appcast:
scp dists/macosx/residualvm_appcast.xml www.residualvm.org:/var/www/appcasts/macosx/release.xml
2012-01-06 22:56:21 +01:00
#
# Special target to generate project files for various IDEs
# Mainly Win32-specific
#
# The release branch is in form 'heads/branch-1-4-1', for this case
# $CUR_BRANCH will be equal to '1', for the rest cases it will be empty
CUR_BRANCH := $(shell cd $(srcdir); git describe --all |cut -d '-' -f 4-)
ideprojects: devtools/create_project
ifeq ($(VER_DIRTY), -dirty)
$(error You have uncommitted changes)
endif
2012-01-06 22:56:21 +01:00
ifeq "$(CUR_BRANCH)" "heads/master"
$(error You cannot do it on master)
2012-01-06 22:56:21 +01:00
else ifeq "$(CUR_BRANCH)" ""
$(error You must be on a release branch)
2012-01-06 22:56:21 +01:00
endif
@echo Creating Code::Blocks project files...
2013-12-08 13:25:24 +01:00
@cd $(srcdir)/dists/codeblocks && ../../devtools/create_project/create_project ../.. --codeblocks >/dev/null && git add -f engines/plugins_table.h *.workspace *.cbp
@echo Creating MSVC project files...
@cd $(srcdir)/dists/msvc && ../../devtools/create_project/create_project ../.. --msvc-version 12 --msvc >/dev/null && git add -f engines/plugins_table.h *.sln *.vcxproj *.vcxproj.filters *.props
2012-01-06 22:56:21 +01:00
@echo
@echo All is done.
@echo Now run
2015-04-19 07:43:34 +02:00
@echo "\tgit commit -m 'DISTS: Generated Code::Blocks and MSVC project files'"
2008-07-13 15:08:23 +00:00
2009-10-05 08:33:46 +00:00
# Mark special targets as phony
.PHONY: deb bundle osxsnap install uninstall