You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
349 B
12 lines
349 B
# 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 tool |
|
@cp ../../build/linux/tool/CPUInfo CPUInfo.elf |
|
@echo Built CPUInfo.elf |
|
|
|
clean: |
|
@cd ../../ && modules/waf/waf-light configure --board linux clean |
|
|
|
linux-debug: all
|
|
|