mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
631d4a1152
CI has a generic infra that calls make clean before building and it fails for Replay since it doesn't have a clean target.
13 lines
354 B
Makefile
13 lines
354 B
Makefile
# 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
|
|
|
|
linux-debug: all
|