ardupilot/Tools/Replay/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
379 B
Makefile
Raw Normal View History

2016-07-27 08:28:30 -03:00
# this is meant to make existing build instructions work with waf
all:
@cd ../../ && modules/waf/waf-light configure --board sitl --debug --disable-scripting
@cd ../../ && modules/waf/waf-light --target tool/Replay
@cp ../../build/sitl/tool/Replay Replay.elf
2016-07-27 08:28:30 -03:00
@echo Built Replay.elf
clean:
@cd ../../ && modules/waf/waf-light configure --board sitl clean
2016-07-27 08:28:30 -03:00
linux-debug: all