aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-12-30 17:20:16 +0100
committerMattias Andrée <m@maandree.se>2025-12-30 17:20:16 +0100
commit4acd51b2e3c638107caecd275fd51a2970f35581 (patch)
tree2d7cea009d6523b548e3b5d0dc083b2babf5ba80
parentlibcmap_script_list: clarify that each codepoint is only listed under their primary script (diff)
downloadlibcmap-4acd51b2e3c638107caecd275fd51a2970f35581.tar.gz
libcmap-4acd51b2e3c638107caecd275fd51a2970f35581.tar.bz2
libcmap-4acd51b2e3c638107caecd275fd51a2970f35581.tar.xz
fix makefile: download selected versions of unicode files
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f5e26c8..7190f5f 100644
--- a/Makefile
+++ b/Makefile
@@ -66,10 +66,10 @@ libcmap.$(LIBEXT): $(LOBJ)
$(CC) $(LIBFLAGS) -o $@ $(LOBJ) $(LDFLAGS)
Scripts.$(UNICODE_VERSION).txt:
- $(DOWNLOAD) 'https://www.unicode.org/Public/17.0.0/ucd/Scripts.txt' > $@
+ $(DOWNLOAD) 'https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/Scripts.txt' > $@
Blocks.$(UNICODE_VERSION).txt:
- $(DOWNLOAD) 'https://www.unicode.org/Public/17.0.0/ucd/Blocks.txt' > $@
+ $(DOWNLOAD) 'https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/Blocks.txt' > $@
Scripts.txt.c: Scripts.$(UNICODE_VERSION).txt Scripts.parse
./Scripts.parse < $(@:.txt.c=).$(UNICODE_VERSION).txt > $@