mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-20 18:27:16 +01:00
21 lines
378 B
Makefile
21 lines
378 B
Makefile
#-*- mode: makefile; tab-width: 4; -*-
|
|
#
|
|
|
|
TEMPLATE = subdirs
|
|
|
|
SUBDIRS = src doc
|
|
|
|
DOLLAR = $
|
|
|
|
build_tests.commands = ./unit_tests.sh make build
|
|
build_tests.depends = all
|
|
|
|
run_tests.commands = ./unit_tests.sh make run
|
|
run_tests.depends = all
|
|
|
|
testclean.commands = ./unit_tests.sh make clean
|
|
tests.depends = run_tests
|
|
|
|
QMAKE_EXTRA_TARGETS += build_tests run_tests tests testclean
|
|
|