55 lines
879 B
Makefile
55 lines
879 B
Makefile
#!/usr/bin/make -f
|
|
|
|
# export DH_VERBOSE=1
|
|
|
|
configure: configure-stamp
|
|
|
|
configure-stamp:
|
|
dh_testdir
|
|
-$(MAKE) distclean
|
|
qmake-qt4 CONFIG-="debug" CONFIG+="release" DESTDIR=$(CURDIR)/debian/qsynergy/usr/bin/
|
|
touch $@
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp: configure-stamp
|
|
dh_testdir
|
|
$(MAKE)
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp configure-stamp
|
|
qmake-qt4 CONFIG-="debug" CONFIG+="release"
|
|
$(MAKE) distclean
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_install
|
|
dh_installdirs
|
|
$(MAKE)
|
|
|
|
binary-indep: build install
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
dh_installdocs
|
|
dh_installmenu
|
|
dh_strip
|
|
dh_compress
|
|
dh_desktop
|
|
dh_fixperms
|
|
dh_installdeb
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|
|
|