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