81f96aedd2
this uses log msgs from AP_DAL to replay more accurately Co-authored-by: Peter Barker <pbarker@barker.dropbear.id.au>
13 lines
384 B
Makefile
13 lines
384 B
Makefile
# this is meant to make existing build instructions work with waf
|
|
|
|
all:
|
|
@cd ../../ && modules/waf/waf-light configure --board linux --debug --disable-scripting
|
|
@cd ../../ && modules/waf/waf-light --target tools/Replay
|
|
@cp ../../build/linux/tools/Replay Replay.elf
|
|
@echo Built Replay.elf
|
|
|
|
clean:
|
|
@cd ../../ && modules/waf/waf-light configure --board linux clean
|
|
|
|
linux-debug: all
|