xref: /freebsd/contrib/openpam/t/Makefile.am (revision 7d99ab9fd0cc2c1ce2ecef0ed6d0672c2a50b0cb)
1# $Id: Makefile.am 572 2012-04-05 15:41:44Z des $
2
3INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib
4
5noinst_HEADERS = t.h
6
7# tests
8TESTS = t_openpam_readword t_openpam_readlinev
9check_PROGRAMS = $(TESTS)
10
11# libt - common support code
12check_LIBRARIES = libt.a
13libt_a_SOURCES = t_main.c
14
15# link with libpam and libt
16LDADD = libt.a $(top_builddir)/lib/libpam.la
17