Ardupilot2/Tools/Replay/Makefile
Andrew Tridgell 81f96aedd2 Replay: new replay implemention
this uses log msgs from AP_DAL to replay more accurately

Co-authored-by: Peter Barker <pbarker@barker.dropbear.id.au>
2020-11-10 16:15:45 +11:00

13 lines
384 B
Makefile

# this is meant to make existing build instructions work with waf
all:
@cd ../../ && modules/waf/waf-light configure --board linux --debug --disable-scripting
@cd ../../ && modules/waf/waf-light --target tools/Replay
@cp ../../build/linux/tools/Replay Replay.elf
@echo Built Replay.elf
clean:
@cd ../../ && modules/waf/waf-light configure --board linux clean
linux-debug: all