~ubuntu-branches/ubuntu/jaunty/signing-party/jaunty

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2008-05-20 12:23:52 UTC
  • mfrom: (1.1.12 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080520122352-ifxepk04h8ktfr5p
Tags: 1.0-2
* gpg-mailkeys: Fix parameter escaping of printf, thanks
  Olivier Tetard (Closes: #478151).
* springgraph: clarify help text (Closes: 474351).
* Switch dependency libmime-perl to libmime-tools-perl (renamed).
* Put springgraph and sig2dot in section graphics.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DIRS=caff gpg-key2ps gpg-mailkeys gpgsigs gpglist keylookup
 
1
DIRS=caff gpg-key2ps gpg-mailkeys gpgsigs gpglist gpgparticipants keylookup \
 
2
     sig2dot springgraph
2
3
VERSION=$(shell dpkg-parsechangelog 2>&1 | perl -ne 'print $$1 if /^Version: ([^-]*)/')
3
4
DEBVERSION=$(shell dpkg-parsechangelog 2>&1 | perl -ne 'print $$1 if /^Version: (.*)/')
4
5
TGZ=../signing-party_$(VERSION).orig.tar.gz
7
8
all:
8
9
        for dir in $(DIRS) ; do if [ -f $$dir/Makefile ] ; then $(MAKE) -C $$dir || exit 1 ; fi ; done
9
10
 
 
11
install:
 
12
        for dir in $(DIRS) ; do if [ -f $$dir/Makefile ] ; then $(MAKE) -C $$dir install || exit 1 ; fi ; done
 
13
 
10
14
clean:
11
15
        for dir in $(DIRS) ; do if [ -f $$dir/Makefile ] ; then $(MAKE) -C $$dir clean || exit 1 ; fi ; done
12
16
 
13
17
dist:
 
18
        [ -d debian ] && fakeroot debian/rules clean
14
19
        [ ! -f $(TGZ) ]
15
20
        mkdir $(TGZ_DIR)
16
21
        for dir in $(DIRS) ; do cp -a $$dir $(TGZ_DIR); done
17
 
        cp -a README TODO Makefile $(TGZ_DIR)
18
 
        tar cvz -f $(TGZ) --exclude .svn $(TGZ_DIR)
 
22
        cp -a README Makefile $(TGZ_DIR)
 
23
        GZIP=--best tar cvz -f $(TGZ) --exclude .svn $(TGZ_DIR)
19
24
        rm -rf $(TGZ_DIR)
20
25
 
21
26
tag-release: