~intrahealth+informatics/+junk/ihris-meta

« back to all changes in this revision

Viewing changes to i2ce-ihris-manage-site-blank/debian/rules

  • Committer: Mark A. Hershberger
  • Date: 2009-09-03 17:42:45 UTC
  • Revision ID: mhershberger@intrahealth.org-20090903174245-1mi3j3ig7r2uui34
Add blank site, move sample data to separate package from -all.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
 
 
4
# Uncomment this to turn on verbose mode.
 
5
#export DH_VERBOSE=1
 
6
 
 
7
PKG=$(shell dpkg-parsechangelog | awk ‘/^Source:/ {print $2}’)
 
8
VERSION=$(shell dpkg-parsechangelog | awk ‘/^Version:/ {print $2}’)
 
9
 
 
10
TOP=$(CURDIR)/debian/$(PKG)
 
11
 
 
12
configure: configure-stamp
 
13
configure-stamp:
 
14
        dh_testdir
 
15
 
 
16
        touch $@
 
17
 
 
18
build: build-stamp
 
19
build-stamp: configure-stamp 
 
20
        dh_testdir
 
21
 
 
22
        touch $@
 
23
 
 
24
clean:
 
25
        dh_testdir
 
26
        dh_testroot
 
27
        rm -f *-stamp
 
28
 
 
29
        dh_clean 
 
30
 
 
31
install: build
 
32
        dh_testdir
 
33
        dh_testroot
 
34
        dh_prep
 
35
        dh_installdirs
 
36
 
 
37
# Build architecture-independent files here.
 
38
binary-indep: build install
 
39
        dh_testdir
 
40
        dh_testroot
 
41
        dh_installchangelogs 
 
42
        dh_installdocs
 
43
        dh_installexamples
 
44
        dh_install
 
45
        dh_installmenu
 
46
        dh_installdebconf       
 
47
        dh_installlogrotate
 
48
        dh_installmime
 
49
        dh_installman
 
50
        dh_link
 
51
        dh_compress
 
52
        dh_fixperms
 
53
        dh_makeshlibs
 
54
        dh_installdeb
 
55
        dh_shlibdeps
 
56
        dh_gencontrol
 
57
        dh_md5sums
 
58
        dh_builddeb
 
59
 
 
60
binary: binary-indep
 
61
.PHONY: build clean binary-indep binary-arch binary install configure