From ddd4ef602ed7481743b8998a4a411003ca5eae07 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Fri, 18 Sep 2020 00:15:35 +0200 Subject: [PATCH] Makefile: update internals.txt --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..08e9342 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +MY_INTERNALS = $(HOME)/Library/Mobile\ Documents/com~apple~TextEdit/Documents/Apple\ Internals.rtf + +.PHONY: all + +all: internals.txt + +ifneq ($(wildcard $(MY_INTERNALS)),) +internals.txt: $(MY_INTERNALS) + textutil -cat txt "$<" -output $@ +endif