ardupilot/Tools/Replay/Makefile

13 lines
364 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 linux --debug
2018-04-20 21:35:06 -03:00
@cd ../../ && modules/waf/waf-light --target tools/Replay
2018-05-08 23:58:14 -03:00
@cp ../../build/linux/tools/Replay Replay.elf
2016-07-27 08:28:30 -03:00
@echo Built Replay.elf
clean:
@cd ../../ && modules/waf/waf-light configure --board linux clean
2016-07-27 08:28:30 -03:00
linux-debug: all