freebsd-dev/contrib/openpam/t/Makefile.am

20 lines
434 B
Makefile
Raw Normal View History

2014-09-15 09:40:30 +00:00
# $Id: Makefile.am 763 2014-02-26 16:29:16Z des $
2012-05-26 14:23:18 +00:00
2013-09-07 16:15:30 +00:00
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/lib/libpam
2012-05-26 14:23:18 +00:00
noinst_HEADERS = t.h
# tests
2013-09-07 16:15:30 +00:00
TESTS =
TESTS += t_openpam_ctype
2013-09-07 16:15:30 +00:00
TESTS += t_openpam_readword
TESTS += t_openpam_readlinev
2012-05-26 14:23:18 +00:00
check_PROGRAMS = $(TESTS)
# libt - common support code
check_LIBRARIES = libt.a
2013-09-07 16:15:30 +00:00
libt_a_SOURCES = t_main.c t_file.c
2012-05-26 14:23:18 +00:00
# link with libpam and libt
2013-09-07 16:15:30 +00:00
LDADD = libt.a $(top_builddir)/lib/libpam/libpam.la