1#-*- mode: makefile; tab-width: 4; -*-
2#
3
4TEMPLATE = subdirs
5
6SUBDIRS = src doc
7
8DOLLAR = $
9
10build_tests.commands = ./unit_tests.sh make build_tests
11build_tests.depends = all
12
13run_tests.commands =  ./unit_tests.sh make run_tests
14run_tests.depends = all
15
16tests.depends = run_tests
17
18clean_tests.commands = ./unit_tests.sh make clean_tests
19
20QMAKE_EXTRA_TARGETS += build_tests run_tests clean_tests tests
21
22