File: Makefile.am

package info (click to toggle)
clutils 20031216-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,348 kB
  • ctags: 540
  • sloc: sh: 7,191; cpp: 4,128; makefile: 192
file content (35 lines) | stat: -rw-r--r-- 823 bytes parent folder | download
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
28
29
30
31
32
33
34
35
SUBDIRS= . plugins

INCLUDES = -I${PCCTSROOT} -I$(top_srcdir)/src

noinst_PROGRAMS = regressionTest

EXTRA_DIST = Greeter.h \
	configurationParserTest.cfg

regressionTest_SOURCES = \
	ArgumentParserTest.h \
	ArgumentParserTest.cpp \
	ConfigurationParserTest.h \
	ConfigurationParserTest.cpp \
	FileManagerTest.h \
	FileManagerTest.cpp \
	PluginManagerTest.h \
	PluginManagerTest.cpp \
	regressionTest.cpp

all-local: $(top_builddir)/test/configurationParserTest.cfg

$(top_builddir)/test/configurationParserTest.cfg:
	if [ !-e $(top_builddir)/test/configurationParserTest.cfg ]; then
	  cp $(top_srcdir)/test/configurationParserTest.cfg \
		 $(top_builddir)/test/configurationParserTest.cfg
	fi

regressionTest_LDFLAGS = \
	-static \
	--export-dynamic \
	-Wl,-E

regressionTest_LDADD = \
	$(top_builddir)/src/libclutils.la