~ubuntu-branches/ubuntu/karmic/libsmbios/karmic

« back to all changes in this revision

Viewing changes to cppunit/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Tallon
  • Date: 2007-04-22 13:04:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070422130455-t40zo63zf23cip6t
Tags: 0.13.6-1
* New upstream version
  - Adds complete support for EFI (i.e. intel-based Macs)

* Fixed FTBFS with gcc4.3 (missing includes) (Closes: #418621)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:noexpandtab:autoindent:tabstop=8:shiftwidth=8:filetype=make:nocindent:
 
2
 
 
3
AM_LDFLAGS = -L@top_builddir@/libraries/ -lsmbios -lsmbiosxml
 
4
INCLUDES = -I@top_builddir@/include -I@top_builddir@/libraries/common -I@top_srcdir@/include -I@top_srcdir@/libraries/common -I@top_srcdir@/libraries/xml_libxml2 -I@top_srcdir@/cppunit/
 
5
 
 
6
CLEANFILES=testResults.xml
 
7
 
 
8
EXTRA_DIST = \
 
9
        runtests.sh     \
 
10
        platform        \
 
11
        outputctl.h     \
 
12
        ./interface/testPlatform.h      \
 
13
        ./interface/testRbu.h   \
 
14
        ./interface/testStandalone.h
 
15
 
 
16
TESTS = runtests.sh
 
17
check_PROGRAMS = testRbu testPlatform testStandalone
 
18
 
 
19
testRbu_LDFLAGS = $(shell xml2-config --libs) -lcppunit -ldl $(CPPUNIT_LIBS)
 
20
testRbu_CXXFLAGS = $(shell xml2-config --cflags) -DLIBXML2=1 -DLIBXERCES=2 -DXMLUTILS=1 $(CPPUNIT_CXXFLAGS)
 
21
testRbu_SOURCES = \
 
22
    ./main.cpp  \
 
23
    ./interface/testRbu.cpp
 
24
 
 
25
testPlatform_LDFLAGS = $(shell xml2-config --libs) -lcppunit -ldl $(CPPUNIT_LIBS)
 
26
testPlatform_CXXFLAGS = $(shell xml2-config --cflags) -DLIBXML2=1 -DLIBXERCES=2 -DXMLUTILS=1 $(CPPUNIT_CXXFLAGS)
 
27
testPlatform_SOURCES = \
 
28
    ./main.cpp  \
 
29
    ./interface/testPlatform.cpp 
 
30
 
 
31
testStandalone_LDFLAGS = $(shell xml2-config --libs) -lcppunit -ldl $(CPPUNIT_LIBS)
 
32
testStandalone_CXXFLAGS = $(shell xml2-config --cflags) -DLIBXML2=1 -DLIBXERCES=2 -DXMLUTILS=1 $(CPPUNIT_CXXFLAGS)
 
33
testStandalone_SOURCES = \
 
34
    ./main.cpp  \
 
35
    ./interface/testStandalone.cpp 
 
36