5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-02-19 22:33:57 -04:00
ardupilot/Tools/CPUInfo/Makefile
2021-07-07 17:31:09 +10:00

13 lines
350 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/tool/CPUInfo CPUInfo.elf
@echo Built CPUInfo.elf
clean:
@cd ../../ && modules/waf/waf-light configure --board linux clean
linux-debug: all