~ubuntu-branches/ubuntu/lucid/libpam-mount/lucid

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-08-13 13:01:03 UTC
  • mfrom: (32.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090813130103-wnn1h2t2ny0d1gp0
Tags: 1.27-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - Implement https://wiki.ubuntu.com/PAMConfigFrameworkSpec by adding
    debian/pam-auth-update and installing that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- Makefile -*-
2
2
 
3
 
dist_man_MANS = mount.crypt.8 pam_mount.8 pam_mount.conf.5 pmvarrun.8 \
4
 
                pmt-ehd.8 pmt-fd0ssh.1 umount.crypt.8
 
3
man_MANS = pam_mount.8 pam_mount.conf.5
 
4
dist_man_MANS = mount.crypt.8 mount.crypt_LUKS.8 mount.crypto_LUKS.8 \
 
5
                pmvarrun.8 pmt-ehd.8 \
 
6
                pmt-fd0ssh.1 umount.crypt.8 umount.crypt_LUKS.8 \
 
7
                umount.crypto_LUKS.8
5
8
dist_noinst_DATA = pam_mount.txt
 
9
EXTRA_DIST = bugs.txt changelog.txt faq.txt install.txt options.txt todo.txt
 
10
CLEANFILES = ${man_MANS}
 
11
 
 
12
replcmd = perl -lpe 's/\@''PACKAGE\@/@PACKAGE@/g;s/\@''PACKAGE_VERSION\@/@PACKAGE_VERSION@/g;s/\@''PACKAGE_RELDATE\@/@PACKAGE_RELDATE@/g;'
 
13
 
 
14
pam_mount.8: pam_mount.8.in ${top_builddir}/config.status
 
15
        ${AM_V_GEN}${replcmd} ${srcdir}/pam_mount.8.in >pam_mount.8;
 
16
 
 
17
pam_mount.conf.5: pam_mount.conf.5.in ${top_builddir}/config.status
 
18
        ${AM_V_GEN}${replcmd} ${srcdir}/pam_mount.conf.5.in >pam_mount.conf.5;
6
19
 
7
20
pam_mount.txt: pam_mount.8
8
 
        man -l ${srcdir}/pam_mount.8 | perl -pe 's/.\cH//g' >pam_mount.txt;
 
21
        ${AM_V_GEN}man -l pam_mount.8 | perl -pe 's/.\cH//g' >pam_mount.txt;