ardupilot/Tools/Replay/Makefile

13 lines
354 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
@cd ../../ && modules/waf/waf-light tools
@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