mirror of https://github.com/zxdos/zxuno.git
software/iwconfig: fixed target's name in `Makefile` (`zcc` feature)
This commit is contained in:
parent
bb11a95534
commit
a75434a143
|
|
@ -4,4 +4,4 @@
|
|||
|
||||
*.bin
|
||||
*.def
|
||||
iwconfig
|
||||
IWCONFIG
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue