11 lines
287 B
Makefile
11 lines
287 B
Makefile
######################################################################
|
|
#
|
|
######################################################################
|
|
SOURCE ?= https://raw.githubusercontent.com/w3c/xml-entities/gh-pages/unicode.xml
|
|
|
|
unicode.xml:
|
|
curl -so $@ $(SOURCE)
|
|
|
|
clean:
|
|
rm unicode.xml
|