Lines 1-14
Link Here
|
1 |
pam_PROGRAMS = pam_thinkfinger.so |
1 |
pam_LTLIBRARIES = libpam_thinkfinger.la |
2 |
pamdir = $(SECUREDIR) |
2 |
pamdir = $(SECUREDIR) |
3 |
|
3 |
|
4 |
INCLUDES = -I$(top_srcdir)/libthinkfinger |
4 |
INCLUDES = -I$(top_srcdir)/libthinkfinger |
5 |
|
5 |
|
6 |
if HAVE_OLD_PAM |
6 |
if HAVE_OLD_PAM |
7 |
pam_thinkfinger_so_SOURCES = pam_thinkfinger-compat.c pam_thinkfinger-compat.h pam_thinkfinger-uinput.c pam_thinkfinger-uinput.h pam_thinkfinger.c |
7 |
libpam_thinkfinger_la_SOURCES = pam_thinkfinger-compat.c pam_thinkfinger-compat.h pam_thinkfinger-uinput.c pam_thinkfinger-uinput.h pam_thinkfinger.c |
8 |
else |
8 |
else |
9 |
pam_thinkfinger_so_SOURCES = pam_thinkfinger-uinput.c pam_thinkfinger-uinput.h pam_thinkfinger.c |
9 |
libpam_thinkfinger_la_SOURCES = pam_thinkfinger-uinput.c pam_thinkfinger-uinput.h pam_thinkfinger.c |
10 |
endif |
10 |
endif |
11 |
pam_thinkfinger_so_LDFLAGS = -shared -Wl,-soname,pam_thinkfinger.so -Wl,--as-needed |
11 |
libpam_thinkfinger_la_LDFLAGS = -shared -Wl,-soname,pam_thinkfinger.so -Wl,--as-needed |
12 |
pam_thinkfinger_so_CFLAGS = $(CFLAGS) |
12 |
libpam_thinkfinger_la_CFLAGS = $(CFLAGS) |
13 |
pam_thinkfinger_so_LDADD = $(top_builddir)/libthinkfinger/libthinkfinger.la $(PAM_LIBS) $(PTHREAD_LIBS) |
13 |
libpam_thinkfinger_la_LIBADD = $(top_builddir)/libthinkfinger/libthinkfinger.la $(PAM_LIBS) $(PTHREAD_LIBS) |
14 |
|
|
|
15 |
- |
|
|