~ubuntu-branches/ubuntu/karmic/moon/karmic

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
36
37
38
39
40
41
42
43
44
45
46
47
MONO_SUBDIRS=
PERF_SUBDIR=

if INCLUDE_MANAGED_CODE
MONO_SUBDIRS += class
if INCLUDE_PERFORMANCE
PERF_SUBDIR = perf
endif INCLUDE_PERFORMANCE
endif

if !PLUGIN_INSTALL
if INCLUDE_DESKTOP_MANAGED_CODE
MONO_SUBDIRS += gtk man data
MONO_EXAMPLES = examples
endif

if INCLUDE_TESTING
TEST_SUBDIR = test
endif INCLUDE_TESTING

TOOLS_SUBDIR = tools
endif !PLUGIN_INSTALL

SUBDIRS = $(subdirs) src $(MONO_SUBDIRS) $(TOOLS_SUBDIR) plugin $(TEST_SUBDIR) $(PERF_SUBDIR) $(MONO_EXAMPLES)

pkgconfigdir = $(libdir)/pkgconfig
noinst_DATA=moon.pc

EXTRA_DIST=moon.pc.in LICENSE NOTES

# this should be handled by dolt.m4
DISTCLEANFILES=	doltcompile \
		doltlibtool

# custom install rule
test-plugin:
	$(MAKE) $(AM_MAKEFLAGS) -C plugin test-plugin

run-tests:
	$(MAKE) $(AM_MAKEFLAGS) -C test run-tests

run-ms-tests:
	$(MAKE) $(AM_MAKEFLAGS) -C test run-ms-tests

run-perf: 
	$(MAKE) $(AM_MAKEFLAGS) -C perf run-perf