7 lines
178 B
Makefile
7 lines
178 B
Makefile
|
AWK = awk
|
||
|
UNICODE = http://unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
|
||
|
|
||
|
default:
|
||
|
@echo Downloading and parsing $(UNICODE)
|
||
|
@curl -\# $(UNICODE) | $(AWK) -f mkrunetype.awk
|