~ubuntu-branches/ubuntu/gutsy/lasso/gutsy

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2004-09-13 09:26:34 UTC
  • Revision ID: james.westby@ubuntu.com-20040913092634-01vdfl8j9cp94exa
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if WITH_TESTS
 
2
 
 
3
TESTS = tests
 
4
noinst_PROGRAMS = tests
 
5
 
 
6
INCLUDES = \
 
7
        -DPACKAGE=\"@PACKAGE@\" \
 
8
        -I$(top_srcdir) \
 
9
        -I$(top_srcdir)/lasso \
 
10
        -DTESTSDATADIR=\"$(srcdir)/data/\" \
 
11
        $(LASSO_DEFINES) \
 
12
        $(LASSO_CFLAGS) \
 
13
        $(CHECK_CFLAGS)
 
14
 
 
15
tests_SOURCES = tests.c login_tests.c basic_tests.c
 
16
tests_LDADD = \
 
17
        $(top_builddir)/lasso/liblasso.la \
 
18
        $(LASSO_LIBS) \
 
19
        $(CHECK_LIBS)
 
20
endif
 
21
 
 
22
EXTRA_DIST = tests.c login_tests.c basic_tests.c
 
23
 
 
24
SUBDIRS = data
 
25
 
 
26
CLEANFILES = result.xml
 
27