ardupilot/Tools/Replay/Makefile

13 lines
370 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
2016-07-27 08:28:30 -03:00
@cp ../../build/linux-debug/tools/Replay Replay.elf
@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