Makefile: update internals.txt

This commit is contained in:
Michael Roitzsch
2020-09-18 00:15:35 +02:00
parent 326b9fe2c0
commit ddd4ef602e

10
Makefile Normal file
View File

@@ -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