Files
apple-internals/Makefile
2020-09-19 12:27:57 +02:00

11 lines
242 B
Makefile

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