projets
/
modeles-openoffice.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Correction d'un bogue lors de l'absence de dossier pour modèles Impress.
[modeles-openoffice.git]
/
auf-modeles-openoffice
/
debian
/
rules
1
#!/usr/bin/make -f
2
# -*- makefile -*-
3
4
#export DH_VERBOSE=1
5
6
configure:
7
8
build:
9
dh_testdir
10
$(MAKE)
11
12
clean:
13
dh_testdir
14
dh_testroot
15
$(MAKE) clean
16
dh_clean
17
18
install: build
19
dh_testdir
20
dh_testroot
21
dh_clean -k
22
dh_installdirs
23
$(MAKE) DESTDIR=$(CURDIR)/debian/auf-modeles-openoffice install
24
25
binary-indep: build install
26
dh_testdir
27
dh_testroot
28
dh_installchangelogs
29
dh_installdocs
30
# dh_installexamples
31
# dh_install
32
# dh_installmenu
33
# dh_installdebconf
34
# dh_installmime
35
# dh_installman
36
dh_compress
37
dh_fixperms
38
dh_installdeb
39
dh_gencontrol
40
dh_md5sums
41
dh_builddeb
42
43
binary-arch: build install
44
45
binary: binary-indep binary-arch
46
.PHONY: configure build clean install binary binary-indep binary-arch