diff options
Diffstat (limited to 'Makefile.aut')
-rw-r--r-- | Makefile.aut | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.aut b/Makefile.aut index 8816902220b36..f16642ce25a6a 100644 --- a/Makefile.aut +++ b/Makefile.aut @@ -112,6 +112,13 @@ ubin.uni: unicode/UnicodeData.txt wide.uni: unicode/EastAsianWidth.txt ./mkutable -f1 W F -- unicode/EastAsianWidth.txt > $@ +unicode/UnicodeData.txt: + mkdir -p unicode + curl -s -o $@ ftp://ftp.unicode.org/Public/UNIDATA/UnicodeData.txt +unicode/EastAsianWidth.txt: + mkdir -p unicode + curl -s -o $@ ftp://ftp.unicode.org/Public/UNIDATA/EastAsianWidth.txt + distfiles: ${DISTFILES} dist: ${DISTFILES} @@ -137,4 +144,4 @@ dist: ${DISTFILES} tagall: @REL=`sed -e '/char version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/v\1/' -e q ${srcdir}/version.c`; \ echo "tagging $$REL"; \ - $(GIT) tag -f "$$REL" + $(GIT) tag -a -f -m "$$REL" "$$REL" |