blob: e883bbfb9d4f6a0ac94b9b8ad2260b7a71100bfd (
plain)
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
|
#
# $Id: Makefile.am,v 1.1 2001-04-28 18:23:32 bastiaan Exp $
#
EXTRA_DIST = cppunit.dsw cppunit.dsp
cppunitdir=$(includedir)/cppunit
lib_LTLIBRARIES = libcppunit.la
libcppunit_la_SOURCES = \
TestCase.cpp \
TestSuite.cpp \
TestResult.cpp \
TestFailure.cpp \
TestRegistry.cpp \
Exception.cpp \
TextTestResult.cpp \
estring.h
libcppunit_la_LDFLAGS= \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
-release $(LT_RELEASE)
|