[go: up one dir, main page]

Menu

[r43]: / trunk / Makefile  Maximize  Restore  History

Download this file

20 lines (15 with data), 460 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
helptext:
@echo "Targets:"
@echo " build -> build AeR with RELEASE options"
@echo " build_tests -> build unittests for AeR"
@echo " run_tests -> run unittests and store result under bin/test_results.xml"
build:
lazbuild player/aer_player.lpr --bm=Release
build_tests:
lazbuild tests/aer_unittests.lpr
lazbuild tests/aer_unittests_cli.lpr
run_tests:
bin/aer_unittests_cli -a --file=bin/test_results.xml
clean:
rm -rf bin/*
rm -rf obj/*