Mercurial > dropbear
annotate debian/rules @ 522:8cc0598b0b9a maemo
- Split into separate debs
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 18 Nov 2008 12:53:48 +0000 |
parents | 8c2d2edadf2a |
children | 4ff1bf0345c9 b0668a7f76d9 |
rev | line source |
---|---|
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
1 #!/usr/bin/make -f |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
2 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
3 #export DH_OPTIONS |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
4 DEB_HOST_GNU_TYPE ?=$(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
5 DEB_BUILD_GNU_TYPE ?=$(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
6 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
7 STRIP =strip |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
8 ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
9 STRIP =: nostrip |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
10 endif |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
11 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
12 CFLAGS =-Wall -g |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
13 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
14 CFLAGS +=-O0 |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
15 else |
522 | 16 CFLAGS +=-Os |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
17 endif |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
18 |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
19 CONFFLAGS = |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
20 CC =gcc |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
21 ifneq (,$(findstring diet,$(DEB_BUILD_OPTIONS))) |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
22 CONFFLAGS =--disable-zlib |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
23 CC =diet -v -Os gcc -nostdinc |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
24 endif |
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
25 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
26 patch: deb-checkdir patch-stamp |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
27 patch-stamp: |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
28 for i in `ls -1 debian/diff/*.diff || :`; do \ |
469
8c2d2edadf2a
Update to debian 0.50-4 diff
Matt Johnston <matt@ucc.asn.au>
parents:
220
diff
changeset
|
29 patch -p1 <$$i || exit 1; \ |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
30 done |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
31 touch patch-stamp |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
32 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
33 config.status: patch-stamp configure |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
34 CC='$(CC)' \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
35 CFLAGS='$(CFLAGS)'' -DSFTPSERVER_PATH="\"/usr/lib/sftp-server\""' \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
36 ./configure --host='$(DEB_HOST_GNU_TYPE)' \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
37 --build='$(DEB_BUILD_GNU_TYPE)' --prefix=/usr \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
38 --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
39 $(CONFFLAGS) |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
40 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
41 build: deb-checkdir build-stamp |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
42 build-stamp: config.status |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
43 $(MAKE) CC='$(CC)' LD='$(CC)' |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
44 touch build-stamp |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
45 |
522 | 46 clean: DIR=$(shell pwd)/debian/dropbear |
47 clean: deb-checkdir deb-checkuid | |
469
8c2d2edadf2a
Update to debian 0.50-4 diff
Matt Johnston <matt@ucc.asn.au>
parents:
220
diff
changeset
|
48 test ! -r Makefile || $(MAKE) distclean |
8c2d2edadf2a
Update to debian 0.50-4 diff
Matt Johnston <matt@ucc.asn.au>
parents:
220
diff
changeset
|
49 rm -f libtomcrypt/Makefile libtommath/Makefile |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
50 test ! -e patch-stamp || \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
51 for i in `ls -1r debian/diff/*.diff || :`; do \ |
469
8c2d2edadf2a
Update to debian 0.50-4 diff
Matt Johnston <matt@ucc.asn.au>
parents:
220
diff
changeset
|
52 patch -p1 -R <$$i; \ |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
53 done |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
54 rm -f patch-stamp build-stamp config.log config.status |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
55 rm -rf '$(DIR)' |
522 | 56 rm -rf '$(DIR)'-client |
57 rm -rf '$(DIR)'-server | |
58 rm -rf '$(DIR)'-common | |
59 rm -rf '$(DIR)'-scp | |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
60 rm -f debian/files debian/substvars debian/copyright changelog |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
61 |
522 | 62 install-server: DIR=$(shell pwd)/debian/dropbear-server |
63 install-server: deb-checkdir deb-checkuid config.status | |
64 rm -f '$(DIR)' | |
65 $(MAKE) clean | |
66 $(MAKE) CC='$(CC)' LD='$(LD)' PROGRAMS=dropbear dropbear | |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
67 install -d -m0755 '$(DIR)'/etc/dropbear |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
68 # programs |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
69 install -d -m0755 '$(DIR)'/usr/sbin |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
70 install -m0755 dropbear '$(DIR)'/usr/sbin/dropbear |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
71 # init and run scripts |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
72 install -d -m0755 '$(DIR)'/etc/init.d |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
73 install -m0755 debian/dropbear.init '$(DIR)'/etc/init.d/dropbear |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
74 install -m0755 debian/service/run '$(DIR)'/etc/dropbear/run |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
75 install -d -m0755 '$(DIR)'/etc/dropbear/log |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
76 install -m0755 debian/service/log '$(DIR)'/etc/dropbear/log/run |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
77 ln -s /var/log/dropbear '$(DIR)'/etc/dropbear/log/main |
522 | 78 install -d -m0755 '$(DIR)'/usr/share/man/man8 |
79 for i in dropbear.8 ; do \ | |
80 install -m644 $$i '$(DIR)'/usr/share/man/man8/ || exit 1; \ | |
81 done | |
82 gzip -9 '$(DIR)'/usr/share/man/man8/*.8 | |
83 # copyright, changelog | |
84 cat debian/copyright.in LICENSE > debian/copyright | |
85 test -r changelog || ln -s CHANGES changelog | |
86 $(STRIP) -R .comment -R .note '$(DIR)'/usr/sbin/* | |
87 | |
88 install -d -m0755 '$(DIR)'/DEBIAN | |
89 test '$(CC)' != 'gcc' || \ | |
90 dpkg-shlibdeps '$(DIR)'/usr/sbin/* \ | |
91 '$(DIR)'/usr/lib/dropbear/* | |
92 dpkg-gencontrol -isp -pdropbear-server -P'$(DIR)' | |
93 dpkg -b '$(DIR)' .. | |
94 | |
95 install-client: DIR=$(shell pwd)/debian/dropbear-client | |
96 install-client: deb-checkdir deb-checkuid config.status | |
97 rm -f '$(DIR)' | |
98 $(MAKE) clean | |
99 $(MAKE) CC='$(CC)' LD='$(LD)' PROGRAMS=dbclient dbclient | |
100 install -d -m0755 '$(DIR)'/usr/bin | |
101 install -m0755 dbclient '$(DIR)'/usr/bin/dbclient | |
102 install -d -m0755 '$(DIR)'/usr/share/man/man1 | |
103 install -m644 dbclient.1 '$(DIR)'/usr/share/man/man1/ | |
104 gzip -9 '$(DIR)'/usr/share/man/man1/*.1 | |
105 $(STRIP) -R .comment -R .note '$(DIR)'/usr/bin/* | |
106 | |
107 install -d -m0755 '$(DIR)'/DEBIAN | |
108 test '$(CC)' != 'gcc' || \ | |
109 dpkg-shlibdeps '$(DIR)'/usr/bin/* | |
110 dpkg-gencontrol -isp -pdropbear-client -P'$(DIR)' | |
111 dpkg -b '$(DIR)' .. | |
112 | |
113 install-common: DIR=$(shell pwd)/debian/dropbear-common | |
114 install-common: deb-checkdir deb-checkuid config.status | |
115 rm -f '$(DIR)' | |
116 $(MAKE) clean | |
117 $(MAKE) CC='$(CC)' LD='$(LD)' PROGRAMS="dropbearkey dropbearconvert" MULTI=1 | |
118 install -d -m0755 '$(DIR)'/usr/bin | |
119 install -d -m0755 '$(DIR)'/usr/lib/dropbear | |
120 install -m0755 dropbearmulti \ | |
121 '$(DIR)'/usr/lib/dropbear/dropbearmulti | |
122 ln -s ../lib/dropbear/dropbearmulti '$(DIR)'/usr/bin/dropbearkey | |
123 ln -s dropbearmulti '$(DIR)'/usr/lib/dropbear/dropbearconvert | |
124 install -d -m0755 '$(DIR)'/usr/share/man/man8 | |
125 for i in dropbearkey.8; do \ | |
126 install -m644 $$i '$(DIR)'/usr/share/man/man8/ || exit 1; \ | |
127 done | |
128 gzip -9 '$(DIR)'/usr/share/man/man8/*.8 | |
129 $(STRIP) -R .comment -R .note \ | |
130 '$(DIR)'/usr/bin/* '$(DIR)'/usr/lib/dropbear/* | |
131 | |
132 install -d -m0755 '$(DIR)'/DEBIAN | |
133 test '$(CC)' != 'gcc' || \ | |
134 dpkg-shlibdeps '$(DIR)'/usr/bin/* '$(DIR)'/usr/lib/dropbear/* | |
135 dpkg-gencontrol -isp -pdropbear-common -P'$(DIR)' | |
136 dpkg -b '$(DIR)' .. | |
137 | |
138 install-scp: DIR=$(shell pwd)/debian/dropbear-scp | |
139 install-scp: deb-checkdir deb-checkuid config.status | |
140 rm -f '$(DIR)' | |
141 $(MAKE) clean | |
142 $(MAKE) CC='$(CC)' LD='$(LD)' PROGRAMS="scp" scp | |
143 install -d -m0755 '$(DIR)'/usr/bin | |
144 install -m0755 scp '$(DIR)'/usr/bin/scp | |
145 $(STRIP) -R .comment -R .note '$(DIR)'/usr/bin/* | |
146 | |
147 install -d -m0755 '$(DIR)'/DEBIAN | |
148 test '$(CC)' != 'gcc' || \ | |
149 dpkg-shlibdeps '$(DIR)'/usr/bin/* | |
150 dpkg-gencontrol -isp -pdropbear-scp -P'$(DIR)' | |
151 dpkg -b '$(DIR)' .. | |
152 | |
153 install-multi: DIR=$(shell pwd)/debian/dropbear | |
154 install-multi: deb-checkdir deb-checkuid config.status | |
155 rm -f '$(DIR)' | |
156 $(MAKE) clean | |
157 $(MAKE) CC='$(CC)' LD='$(LD)' PROGRAMS="dropbearkey dropbearconvert scp dropbear dbclient" MULTI=1 | |
158 install -d -m0755 '$(DIR)'/etc/dropbear | |
159 # programs | |
160 install -d -m0755 '$(DIR)'/usr/bin | |
161 install -d -m0755 '$(DIR)'/usr/sbin | |
162 install -d -m0755 '$(DIR)'/usr/lib/dropbear | |
163 install -m0755 dropbearmulti \ | |
164 '$(DIR)'/usr/lib/dropbear/dropbearmulti | |
165 ln -s ../lib/dropbear/dropbearmulti '$(DIR)'/usr/bin/dropbearkey | |
166 ln -s ../lib/dropbear/dropbearmulti '$(DIR)'/usr/bin/dbclient | |
167 ln -s ../lib/dropbear/dropbearmulti '$(DIR)'/usr/bin/scp | |
168 ln -s ../lib/dropbear/dropbearmulti '$(DIR)'/usr/sbin/dropbear | |
169 ln -s dropbearmulti '$(DIR)'/usr/lib/dropbear/dropbearconvert | |
170 # init and run scripts | |
171 install -d -m0755 '$(DIR)'/etc/init.d | |
172 install -m0755 debian/dropbear.init '$(DIR)'/etc/init.d/dropbear | |
173 install -m0755 debian/service/run '$(DIR)'/etc/dropbear/run | |
174 install -d -m0755 '$(DIR)'/etc/dropbear/log | |
175 install -m0755 debian/service/log '$(DIR)'/etc/dropbear/log/run | |
176 ln -s /var/log/dropbear '$(DIR)'/etc/dropbear/log/main | |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
177 install -d -m0755 '$(DIR)'/usr/share/man/man8 |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
178 for i in dropbear.8 dropbearkey.8; do \ |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
179 install -m644 $$i '$(DIR)'/usr/share/man/man8/ || exit 1; \ |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
180 done |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
181 gzip -9 '$(DIR)'/usr/share/man/man8/*.8 |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
182 install -d -m0755 '$(DIR)'/usr/share/man/man1 |
220
9089929fb2b7
* preparing for 0.46 release
Matt Johnston <matt@ucc.asn.au>
parents:
219
diff
changeset
|
183 install -m644 dbclient.1 '$(DIR)'/usr/share/man/man1/ |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
184 gzip -9 '$(DIR)'/usr/share/man/man1/*.1 |
522 | 185 $(STRIP) -R .comment -R .note '$(DIR)'/usr/sbin/* \ |
186 '$(DIR)'/usr/bin/* '$(DIR)'/usr/lib/dropbear/* | |
4
fe6bca95afa7
Makefile.in contains updated files required
Matt Johnston <matt@ucc.asn.au>
parents:
diff
changeset
|
187 |
522 | 188 install -d -m0755 '$(DIR)'/DEBIAN |
180
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
189 test '$(CC)' != 'gcc' || \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
190 dpkg-shlibdeps '$(DIR)'/usr/sbin/* '$(DIR)'/usr/bin/* \ |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
191 '$(DIR)'/usr/lib/dropbear/* |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
192 dpkg-gencontrol -isp -pdropbear -P'$(DIR)' |
743fce568f49
Merge in Debian package changes from 0.45-3, grab the dbclient manpage
Matt Johnston <matt@ucc.asn.au>
parents:
76
diff
changeset
|
193 dpkg -b '$(DIR)' .. |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
194 |
522 | 195 install: install-client install-server install-common install-multi install-scp |
196 binary-indep: | |
197 | |
198 binary-arch: install dropbear.deb | |
199 | |
70
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
200 binary: binary-arch binary-indep |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
201 |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
202 .PHONY: patch build clean install binary-indep binary-arch binary |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
203 |
b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
Matt Johnston <matt@ucc.asn.au>
parents:
4
diff
changeset
|
204 include debian/implicit |