Added first version of microb translation mostly imported from Firefox
[slovak-l10n] / debian / rules
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 DESTDIR=$(CURDIR)/debian/tmp
13
14 configure: configure-stamp
15 configure-stamp:
16         dh_testdir
17
18         touch configure-stamp
19
20
21 build: build-stamp
22
23 build-stamp: configure-stamp 
24         dh_testdir
25
26         $(MAKE)
27
28         touch build-stamp
29
30 clean:
31         dh_testdir
32         dh_testroot
33         rm -f build-stamp configure-stamp
34
35         # Add here commands to clean up after the build process.
36         $(MAKE) clean
37
38         dh_clean 
39
40 install: build
41         dh_testdir
42         dh_testroot
43         dh_clean -k 
44         dh_installdirs
45
46         # Add here commands to install the package into $(DESTDIR)
47         $(MAKE) DESTDIR=$(DESTDIR) install
48
49 # Build architecture-independent files here.
50 binary-indep: build install
51 # We have nothing to do by default.
52
53 # Build architecture-dependent files here.
54 binary-arch: build install
55         dh_testdir
56         dh_testroot
57         dh_installchangelogs
58         dh_installdocs
59         dh_install --sourcedir=debian/tmp
60         dh_compress
61         dh_fixperms
62         dh_installdeb
63         dh_gencontrol
64         dh_md5sums
65         dh_builddeb
66
67 binary: binary-indep binary-arch
68 .PHONY: build clean binary-indep binary-arch binary install configure