~ubuntu-branches/ubuntu/vivid/libpam-tacplus/vivid

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jeroen Nijhof
  • Date: 2011-09-05 16:01:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110905160100-7o4aqefbiflj4232
Tags: upstream-1.3.5
ImportĀ upstreamĀ versionĀ 1.3.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###########################################################################
 
2
##
 
3
## File:        ./Makefile.am
 
4
## Versions:    $Id: Makefile.am,v 1.3 2010/06/11 12:04:29 j-nijhof Exp $
 
5
## Created:     2010/06/09
 
6
##
 
7
###########################################################################
 
8
 
 
9
ACLOCAL_AMFLAGS = -I config
 
10
 
 
11
moduledir = @libdir@
 
12
module_LTLIBRARIES = pam_tacplus.la
 
13
pam_tacplus_la_SOURCES = pam_tacplus.h \
 
14
pam_tacplus.c \
 
15
support.h \
 
16
support.c \
 
17
libtac/lib/acct_r.c \
 
18
libtac/lib/acct_s.c \
 
19
libtac/lib/attrib.c \
 
20
libtac/lib/authen_r.c \
 
21
libtac/lib/authen_s.c \
 
22
libtac/lib/author_r.c \
 
23
libtac/lib/author_s.c \
 
24
libtac/lib/connect.c \
 
25
libtac/lib/cont_s.c \
 
26
libtac/lib/crypt.c \
 
27
libtac/lib/hdr_check.c \
 
28
libtac/lib/header.c \
 
29
libtac/lib/magic.c \
 
30
libtac/lib/magic.h \
 
31
libtac/lib/md5.c \
 
32
libtac/lib/md5.h \
 
33
libtac/lib/messages.c \
 
34
libtac/lib/messages.h \
 
35
libtac/lib/read_wait.c \
 
36
libtac/lib/version.c \
 
37
libtac/lib/xalloc.c \
 
38
libtac/lib/xalloc.h \
 
39
libtac/include/tacplus.h \
 
40
libtac/include/libtac.h \
 
41
libtac/include/cdefs.h
 
42
 
 
43
pam_tacplus_la_CFLAGS = $(AM_CFLAGS) -Ilibtac/include
 
44
pam_tacplus_la_LDFLAGS = -module -avoid-version
 
45
 
 
46
EXTRA_DIST = pam_tacplus.spec sample.pam
 
47
 
 
48
MAINTAINERCLEANFILES = Makefile.in config.h.in configure aclocal.m4 \
 
49
                       config/config.guess  config/config.sub  config/depcomp \
 
50
                       config/install-sh config/ltmain.sh config/missing
 
51
 
 
52
 
 
53
install-data-hook:
 
54
        -rm $(DESTDIR)$(libdir)/pam_tacplus.la
 
55
        -rm $(DESTDIR)$(libdir)/pam_tacplus.a
 
56
        -rm $(DESTDIR)$(libdir)/pam_tacplus.so
 
57
        ${INSTALL} -d $(DESTDIR)$(libdir)/security
 
58
        ${INSTALL} -m 755 .libs/pam_tacplus.so $(DESTDIR)$(libdir)/security
 
59
        ${INSTALL} -d $(DESTDIR)$(docdir)
 
60
        ${INSTALL} -m 644 sample.pam $(DESTDIR)$(docdir)
 
61