From f62eca657a79ef81089f3c34cdf837d7463581db Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 26 Jun 2021 14:59:09 +0200 Subject: Add ipa, man, and unicode scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- dmenu/unicode.d/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dmenu/unicode.d/Makefile (limited to 'dmenu/unicode.d/Makefile') diff --git a/dmenu/unicode.d/Makefile b/dmenu/unicode.d/Makefile new file mode 100644 index 0000000..d34b4d6 --- /dev/null +++ b/dmenu/unicode.d/Makefile @@ -0,0 +1,19 @@ +URL = https://www.unicode.org/Public/UCD/latest/ucd/NamesList.txt + +all: list + +NamesList.txt: + wget -O $@ $(URL) || curl $(URL) > $@ || cp $@.backup $@ + cp -- $@ $@.backup + +list: NamesList.txt + wget -O NamesList.txt $(URL) + ./conv < NamesList.txt > $@ + +clean: + -rm -f -- NamesList.txt NamesList.txt.backup + +reallyclean: clean + -rm -f list + +.PHONY: all -- cgit v1.2.3-70-g09d2