1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# Makefile for popt library.
EXTRA_DIST = testit.sh \
test-poptrc \
test3-data/01.answer \
test3-data/01.input \
test3-data/02.answer \
test3-data/02.input \
test3-data/03.answer \
test3-data/03.input
AM_CPPFLAGS = -I. -I$(top_srcdir)/src
noinst_PROGRAMS = test1 test2 tdict test3
test1_SOURCES = test1.c
test1_LDFLAGS =
test1_LDADD = $(top_builddir)/src/libpopt.la
test2_SOURCES = test2.c
test2_LDFLAGS =
test2_LDADD = $(top_builddir)/src/libpopt.la
test3_SOURCES = test3.c
test3_LDFLAGS =
test3_LDADD = $(top_builddir)/src/libpopt.la
tdict_SOURCES = tdict.c
tdict_LDFLAGS =
tdict_LDADD = $(top_builddir)/src/libpopt.la
noinst_SCRIPTS = testit.sh
TESTS_ENVIRONMENT = \
test1="test1"
TESTS = testit.sh
distclean-local:
rm -rf .ccache
|