2010-07-03 07:26:04 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
# export DH_VERBOSE=1
|
|
|
|
|
|
|
|
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
|
|
|
|
CMAKE_BUILD_TYPE=Debug
|
|
|
|
else
|
|
|
|
CMAKE_BUILD_TYPE=Release
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
|
|
|
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
|
|
|
MAKEFLAGS += -j$(NUMJOBS)
|
|
|
|
endif
|
|
|
|
|
2010-07-08 19:03:55 +00:00
|
|
|
USER_CFLAGS=$(shell dpkg-buildflags --get CFLAGS)
|
|
|
|
USER_CXXFLAGS=$(shell dpkg-buildflags --get CXXFLAGS)
|
|
|
|
|
2010-07-03 07:26:04 +00:00
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh_testdir
|
|
|
|
|
|
|
|
# backup orig makefile
|
|
|
|
for makefile in `find ./ -name "Makefile"` ; do [ -f $${makefile}.orig ] || mv $${makefile} $${makefile}.orig ; done
|
|
|
|
|
|
|
|
# Cmake based makefile
|
2010-07-08 19:03:55 +00:00
|
|
|
cmake CMakeLists.txt \
|
|
|
|
-DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE) \
|
|
|
|
-DCMAKE_BUILD_STRIP=FALSE \
|
|
|
|
-DFORCE_INTERNAL_SOUNDTOUCH=FALSE \
|
2010-07-27 06:09:24 +00:00
|
|
|
-DUSER_CMAKE_C_FLAGS:STRING="$(USER_CFLAGS)" \
|
|
|
|
-DUSER_CMAKE_CXX_FLAGS:STRING="$(USER_CXXFLAGS)"
|
2010-07-03 07:26:04 +00:00
|
|
|
$(MAKE) $(MAKEFLAGS)
|
|
|
|
|
|
|
|
touch build-stamp
|
|
|
|
|
|
|
|
clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f build-stamp
|
|
|
|
|
2010-08-31 16:59:57 +00:00
|
|
|
# Backup some orig makefile if it's not already done.
|
|
|
|
# I hope that some will be delete by upstream when the cmake port is over.
|
|
|
|
# Note: In case that we do not dl all the plugins, the test [ -f $${makefile} ] ensures it works
|
2010-07-03 07:26:04 +00:00
|
|
|
for makefile in plugins/CDVDlinuz/Src/Linux/Makefile \
|
|
|
|
plugins/CDVDiso/src/Linux/Makefile \
|
|
|
|
plugins/CDVDiso/src/Windows/Makefile \
|
|
|
|
plugins/USBnull/Windows/Makefile \
|
|
|
|
plugins/FWnull/Windows/Makefile \
|
|
|
|
plugins/PeopsSPU2/Makefile \
|
|
|
|
plugins/CDVDisoEFP/src/Linux/Makefile ; do \
|
|
|
|
[ -f $${makefile}.orig ] || ( [ -f $${makefile} ] && mv $${makefile} $${makefile}.orig ) || true ; done
|
|
|
|
|
2010-08-31 16:59:57 +00:00
|
|
|
# Add here the commands to clean up after the build process.
|
2010-07-03 07:26:04 +00:00
|
|
|
[ -f Makefile ] && $(MAKE) clean || true
|
|
|
|
# Remove cmake stuff
|
|
|
|
rm -fr $$(find . -type d -name CMakeFiles)
|
|
|
|
rm -f $$(find . -type f -name CMakeCache.txt) $$(find . -type f -name cmake_install.cmake)
|
|
|
|
rm -f $$(find . -type f -name Makefile)
|
2010-08-31 16:59:57 +00:00
|
|
|
# Files generated by bin2cpp
|
2010-07-03 07:26:04 +00:00
|
|
|
cd pcsx2/gui/Resources/ && rm -f App*.h Config*.h BackgroundLogo.h ButtonIcon_Camera.h Dualshock.h
|
|
|
|
# leftover of cmake
|
|
|
|
rm -f bin/plugins/ps2hw.dat
|
|
|
|
rm -f pcsx2/svnrev.h
|
|
|
|
# Restore orig makefile
|
|
|
|
for makefile_orig in `find ./ -name "Makefile.orig"` ; do [ -f $${makefile_orig} ] && mv $${makefile_orig} `echo $${makefile_orig} | sed -e 's/.orig//'` ; done
|
|
|
|
|
|
|
|
dh_clean
|
|
|
|
|
2010-08-30 20:32:59 +00:00
|
|
|
# Allow compilation when fglrx is installed
|
|
|
|
override_dh_shlibdeps:
|
|
|
|
dh_shlibdeps -- --ignore-missing-info
|
|
|
|
|
|
|
|
override_dh_strip:
|
2010-07-03 07:26:04 +00:00
|
|
|
dh_strip --package=pcsx2-unstable --dbg-package=pcsx2-unstable-dbg
|
|
|
|
dh_strip --package=pcsx2-plugins-unstable --dbg-package=pcsx2-plugins-unstable-dbg
|
2010-08-30 20:32:59 +00:00
|
|
|
|
2010-09-12 14:27:33 +00:00
|
|
|
# Avoid to relaunch the compilation twice. (build and dh_auto_build target)
|
|
|
|
override_dh_auto_build:
|
|
|
|
# Do nothing
|
|
|
|
|
2010-08-30 20:32:59 +00:00
|
|
|
%:
|
|
|
|
dh $@ --parallel
|
|
|
|
|
|
|
|
.PHONY: build clean install
|