Last change
on this file since 151 was
151,
checked in by mabarracus, 5 years ago
|
moved code from trusty
|
-
Property svn:executable set to
*
|
File size:
1.7 KB
|
Line | |
---|
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 | |
---|
13 | |
---|
14 | configure: configure-stamp |
---|
15 | configure-stamp: |
---|
16 | dh_testdir |
---|
17 | # Add here commands to configure the package. |
---|
18 | |
---|
19 | touch configure-stamp |
---|
20 | |
---|
21 | |
---|
22 | build: build-stamp |
---|
23 | |
---|
24 | build-stamp: configure-stamp |
---|
25 | dh_testdir |
---|
26 | |
---|
27 | # Add here commands to compile the package. |
---|
28 | # $(MAKE) |
---|
29 | #docbook-to-man debian/lliurex.sgml > lliurex.1 |
---|
30 | |
---|
31 | touch $@ |
---|
32 | |
---|
33 | clean: |
---|
34 | dh_testdir |
---|
35 | dh_testroot |
---|
36 | rm -f build-stamp configure-stamp |
---|
37 | |
---|
38 | # Add here commands to clean up after the build process. |
---|
39 | # $(MAKE) clean |
---|
40 | |
---|
41 | dh_clean |
---|
42 | |
---|
43 | install: build |
---|
44 | dh_testdir |
---|
45 | dh_testroot |
---|
46 | dh_prep |
---|
47 | dh_installdirs |
---|
48 | |
---|
49 | # Build architecture-independent files here. |
---|
50 | binary-indep: build install |
---|
51 | # We have nothing to do by default. |
---|
52 | dh_testdir |
---|
53 | dh_testroot |
---|
54 | dh_installchangelogs |
---|
55 | dh_installdocs |
---|
56 | dh_installexamples |
---|
57 | dh_install |
---|
58 | dllxh_install |
---|
59 | # dh_installmenu |
---|
60 | # dh_installdebconf |
---|
61 | # dh_installlogrotate |
---|
62 | # dh_installemacsen |
---|
63 | # dh_installpam |
---|
64 | # dh_installmime |
---|
65 | # dh_python |
---|
66 | # dh_installinit |
---|
67 | # dh_installcron |
---|
68 | # dh_installinfo |
---|
69 | dh_installman |
---|
70 | dh_link |
---|
71 | dh_strip |
---|
72 | dh_compress |
---|
73 | dh_fixperms |
---|
74 | # dh_perl |
---|
75 | # dh_makeshlibs |
---|
76 | dh_installdeb |
---|
77 | dh_shlibdeps |
---|
78 | dh_gencontrol |
---|
79 | dh_md5sums |
---|
80 | dh_builddeb |
---|
81 | |
---|
82 | # Build architecture-dependent files here. |
---|
83 | binary-arch: build install |
---|
84 | # We have nothing to do |
---|
85 | |
---|
86 | binary: binary-indep binary-arch |
---|
87 | .PHONY: build clean binary-indep binary-arch binary install configure |
---|
Note: See
TracBrowser
for help on using the repository browser.