Mercurial > genwebgallery
annotate debian/rules @ 21:3ce5429cd219
removed unneeded stuff in debian/rules
author | meillo@marmaro.de |
---|---|
date | Sat, 10 May 2008 21:48:21 +0200 |
parents | 27f96c3b8224 |
children |
rev | line source |
---|---|
0 | 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. | |
8 | |
9 # Uncomment this to turn on verbose mode. | |
10 #export DH_VERBOSE=1 | |
11 | |
12 | |
12
27f96c3b8224
fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents:
9
diff
changeset
|
13 build: |
0 | 14 |
15 clean: | |
16 dh_testdir | |
17 dh_testroot | |
21 | 18 dh_clean |
0 | 19 |
12
27f96c3b8224
fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents:
9
diff
changeset
|
20 install: |
0 | 21 dh_testdir |
22 dh_testroot | |
23 dh_installdirs | |
24 | |
25 # Add here commands to install the package into debian/genwebgallery. | |
26 $(MAKE) DESTDIR=$(CURDIR)/debian/genwebgallery install | |
27 | |
28 | |
29 # Build architecture-independent files here. | |
12
27f96c3b8224
fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents:
9
diff
changeset
|
30 binary-indep: install |
0 | 31 dh_testdir |
32 dh_testroot | |
9 | 33 dh_installchangelogs ChangeLog |
0 | 34 dh_installdocs |
35 dh_installman | |
36 dh_compress | |
37 dh_fixperms | |
38 dh_installdeb | |
39 dh_gencontrol | |
40 dh_md5sums | |
41 dh_builddeb | |
42 | |
43 # Build architecture-dependent files here. | |
12
27f96c3b8224
fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents:
9
diff
changeset
|
44 binary-arch: |
0 | 45 |
21 | 46 binary: binary-indep binary-arch |
12
27f96c3b8224
fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents:
9
diff
changeset
|
47 |
0 | 48 .PHONY: build clean binary-indep binary-arch binary install configure |