software/iwconfig: fixed target's name in `Makefile` (`zcc` feature)

This commit is contained in:
Ivan Tatarinov 2021-04-17 23:04:20 +03:00
parent bb11a95534
commit a75434a143
2 changed files with 4 additions and 4 deletions

View File

@ -4,4 +4,4 @@
*.bin
*.def
iwconfig
IWCONFIG

View File

@ -5,11 +5,11 @@
include ../../sdk/common.mk
.PHONY: all
all: iwconfig
all: IWCONFIG
iwconfig: iwconfig.c
IWCONFIG: iwconfig.c
zcc +zx -vn -startup=30 -clib=new $< -SO3 -o $@ -subtype=dot -create-app
.PHONY: clean
clean:
rm -f *.bin *.def iwconfig
rm -f *.bin *.def IWCONFIG