CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/Replay/Makefile
Views: 1798
# 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 tool/Replay
	@cp ../../build/sitl/tool/Replay Replay.elf
	@echo Built Replay.elf

clean:
	@cd ../../ && modules/waf/waf-light configure --board sitl clean

linux-debug: all