17 lines
365 B
Makefile
17 lines
365 B
Makefile
# $Id: Makefile.am 572 2012-04-05 15:41:44Z des $
|
|
|
|
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib
|
|
|
|
noinst_HEADERS = t.h
|
|
|
|
# tests
|
|
TESTS = t_openpam_readword t_openpam_readlinev
|
|
check_PROGRAMS = $(TESTS)
|
|
|
|
# libt - common support code
|
|
check_LIBRARIES = libt.a
|
|
libt_a_SOURCES = t_main.c
|
|
|
|
# link with libpam and libt
|
|
LDADD = libt.a $(top_builddir)/lib/libpam.la
|