-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
36 lines (31 loc) · 873 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = README.md debian
LIBS =
TESTS = $(check_PROGRAMS)
check_PROGRAMS = line_tokens_match_test pattern_test
dist_man8_MANS = pam_ssh_auth_info.8
pamdir = $(libdir)/security
pam_LTLIBRARIES = pam_ssh_auth_info.la
line_tokens_match_SOURCES = \
line_tokens_match.h \
$(tokens_match_SOURCES)
line_tokens_match_test_SOURCES = \
line_tokens_match_test.c \
line_tokens_match_test.h \
$(line_tokens_match_SOURCES)
pam_ssh_auth_info_la_LDFLAGS = \
$(AM_LDFLAGS) -avoid-version -module -shared
pam_ssh_auth_info_la_LIBADD = -lpam
pam_ssh_auth_info_la_SOURCES = \
pam_ssh_auth_info.c \
pam_syslog.h \
$(line_tokens_match_SOURCES)
pattern_SOURCES = \
pattern.h
pattern_test_SOURCES = \
line_tokens_match_test.h \
pattern_test.c \
$(pattern_SOURCES)
tokens_match_SOURCES = \
tokens_match.h \
$(pattern_SOURCES)