~ubuntu-branches/ubuntu/natty/libxslt/natty

« back to all changes in this revision

Viewing changes to xsltproc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-01-19 13:15:06 UTC
  • mfrom: (9.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100119131506-cp3debjmuhm12lzi
Tags: 1.1.26-1ubuntu1
Merge with Debian; remaining changes:
Build a python-libxslt1-dbg package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
EXTRA_PROGRAMS=
6
6
bin_PROGRAMS = xsltproc $(XSLTPROCDV)
7
7
 
 
8
noinst_PROGRAMS=testThreads
 
9
 
8
10
AM_CFLAGS = $(LIBGCRYPT_CFLAGS)
9
11
 
10
12
xsltproc_SOURCES = xsltproc.c
11
13
xsltproc_LDFLAGS = 
12
14
xsltproc_DEPENDENCIES = $(DEPS)
13
15
 
 
16
testThreads_SOURCES=testThreads.c
 
17
testThreads_LDFLAGS =
 
18
testThreads_DEPENDENCIES = $(DEPS)
 
19
testThreads_LDADD=  $(THREAD_LIBS) $(LDADDS)
 
20
 
14
21
DEPS = $(top_builddir)/libxslt/libxslt.la \
15
22
        $(top_builddir)/libexslt/libexslt.la 
16
23
 
24
31
xsltproc.dv: xsltproc.o
25
32
        $(CC) $(CFLAGS) -o xsltproc xsltproc.o ../libexslt/.libs/libexslt.a ../libxslt/.libs/libxslt.a @LIBXML_LIBS@ $(EXTRA_LIBS) $(LIBGCRYPT_LIBS)
26
33
 
 
34
tests: testThreads
 
35
        @echo '## Running testThreads'
 
36
        @($(CHECKER) ./testThreads ; grep "MORY ALLO" .memdump  | grep -v "MEMORY ALLOCATED : 0" || true)