Sun, 10 Jul 2011 10:27:37 +0200
Ignore files forcefully added when starting Qt Creator (it's hard coded.)
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
16 configure: configure-stamp
17 configure-stamp:
18 dh_testdir
19 # qmake PREFIX=/usr# Uncomment this line for use without Qt Creator
21 touch configure-stamp
24 build: build-stamp
26 build-stamp: configure-stamp
27 dh_testdir
29 # Add here commands to compile the package.
30 # $(MAKE) # Uncomment this line for use without Qt Creator
31 #docbook-to-man debian/schachuhr.sgml > schachuhr.1
33 touch $@
35 clean:
36 dh_testdir
37 dh_testroot
38 rm -f build-stamp configure-stamp
40 # Add here commands to clean up after the build process.
41 $(MAKE) clean
43 dh_clean
45 install: build
46 dh_testdir
47 dh_testroot
48 dh_clean -k
49 dh_installdirs
51 # Add here commands to install the package into debian/schachuhr.
52 $(MAKE) INSTALL_ROOT="$(CURDIR)"/debian/schachuhr install
55 # Build architecture-independent files here.
56 binary-indep: build install
57 # We have nothing to do by default.
59 # Build architecture-dependent files here.
60 binary-arch: build install
61 dh_testdir
62 dh_testroot
63 dh_installchangelogs
64 dh_installdocs
65 dh_installexamples
66 # dh_install
67 # dh_installmenu
68 # dh_installdebconf
69 # dh_installlogrotate
70 # dh_installemacsen
71 # dh_installpam
72 # dh_installmime
73 # dh_python
74 # dh_installinit
75 # dh_installcron
76 # dh_installinfo
77 dh_installman
78 dh_link
79 dh_strip
80 dh_compress
81 dh_fixperms
82 # dh_perl
83 # dh_makeshlibs
84 dh_installdeb
85 # dh_shlibdeps # Uncomment this line for use without Qt Creator
86 dh_gencontrol
87 dh_md5sums
88 dh_builddeb
90 binary: binary-indep binary-arch
91 .PHONY: build clean binary-indep binary-arch binary install configure