mirror of
https://github.com/mroi/apple-internals.git
synced 2026-02-12 17:12:44 +00:00
11 lines
242 B
Makefile
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
|