File: Makefile.am

package info (click to toggle)
hyena 0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,408 kB
  • ctags: 4,822
  • sloc: cs: 28,647; sh: 619; makefile: 571
file content (33 lines) | stat: -rw-r--r-- 952 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

EXTRA_DIST = \
	expansions.m4 \
	src/Hyena.Gui/Hyena.Gui.dll.config

#Warning: This is an automatically generated file, do not edit!
if ENABLE_DEBUG
 SUBDIRS =  src/Hyena src/Mono.Data.Sqlite src/Hyena.Data.Sqlite src/Hyena.Gui
endif
if ENABLE_RELEASE
 SUBDIRS =  src/Hyena src/Mono.Data.Sqlite src/Hyena.Data.Sqlite src/Hyena.Gui
endif
if ENABLE_WINDOWS
 SUBDIRS =  src/Hyena src/Mono.Data.Sqlite src/Hyena.Data.Sqlite src/Hyena.Gui
endif

if ENABLE_TESTS
TEST_ASSEMBLIES = \
	Hyena.dll \
	Hyena.Data.Sqlite.dll \
	Hyena.Gui.dll

ENV_OPTIONS = TZ=America/Chicago LC_ALL=it_IT LANG=it_IT
RUNNER = for asm in $${TEST_ASSEMBLIES}; do echo -e "\033[1mRunning tests on $${asm}...\033[0m"; $(ENV_OPTIONS) nunit-console2 -nologo -noshadow $$asm; done

test:
	@pushd bin &>/dev/null; \
	export TEST_ASSEMBLIES="$(TEST_ASSEMBLIES)"; $(RUNNER); \
	popd &>/dev/null;
else
test:
	echo "Tests not enabled.  Pass --enable-tests to configure or ./autogen.sh"
endif