1# $Id: Makefile.am 763 2014-02-26 16:29:16Z des $ 2 3AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/lib/libpam 4 5noinst_HEADERS = t.h 6 7# tests 8TESTS = 9TESTS += t_openpam_ctype 10TESTS += t_openpam_readword 11TESTS += t_openpam_readlinev 12check_PROGRAMS = $(TESTS) 13 14# libt - common support code 15check_LIBRARIES = libt.a 16libt_a_SOURCES = t_main.c t_file.c 17 18# link with libpam and libt 19LDADD = libt.a $(top_builddir)/lib/libpam/libpam.la 20