xref: /netbsd-src/external/bsd/openpam/dist/t/Makefile.am (revision 51c5f9b7c2b2cc93506078d2cab158634a65201f)
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