5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-03-08 22:53:57 -04:00
ardupilot/Tools/Replay/Makefile

13 lines
381 B
Makefile

# 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 tools/Replay
@cp ../../build/sitl/tools/Replay Replay.elf
@echo Built Replay.elf
clean:
@cd ../../ && modules/waf/waf-light configure --board sitl clean
linux-debug: all