~usmteam/usm/usm-ftpsync

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Oliver M
  • Date: 2008-02-14 12:25:25 UTC
  • Revision ID: oly@digitaloctave.com-20080214122525-t40vm88tyg4wkhxg
first version of ftp sync plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
#include /usr/share/dpatch/dpatch.make
 
13
PYTHONS := $(shell pyversions -vr debian/control)
 
14
 
 
15
configure: configure-stamp
 
16
configure-stamp:
 
17
        dh_testdir
 
18
        touch configure-stamp
 
19
 
 
20
 
 
21
build: build-stamp
 
22
 
 
23
build-stamp:
 
24
        dh_testdir
 
25
        touch $@
 
26
 
 
27
clean: 
 
28
        dh_testdir
 
29
        dh_testroot
 
30
        rm -f build-stamp 
 
31
        #[ ! -f Makefile ] || $(MAKE) distclean
 
32
        dh_clean 
 
33
 
 
34
install: build
 
35
        dh_testdir
 
36
        dh_testroot
 
37
        dh_clean -k 
 
38
        dh_installdirs
 
39
 
 
40
 
 
41
# Build architecture-independent files here.
 
42
binary-indep: build install
 
43
        dh_testdir
 
44
        dh_testroot
 
45
        dh_installchangelogs
 
46
        dh_install
 
47
        dh_installdocs
 
48
        dh_installmenu
 
49
        dh_desktop
 
50
        dh_pysupport
 
51
        dh_installman 
 
52
        dh_compress
 
53
        dh_fixperms
 
54
        dh_installdeb
 
55
        dh_shlibdeps
 
56
        dh_gencontrol
 
57
        dh_md5sums
 
58
        dh_builddeb
 
59
        
 
60
# Build architecture-dependent files here.
 
61
binary-arch: build install
 
62
 
 
63
 
 
64
binary: binary-indep binary-arch
 
65
.PHONY: build clean binary-indep binary-arch binary install