mirror of
https://github.com/crosspoint-reader/calibre-plugins.git
synced 2026-04-29 10:26:59 -07:00
15 lines
263 B
Makefile
15 lines
263 B
Makefile
.PHONY: install list remove
|
|
|
|
PLUGIN_DIR = crosspoint_reader
|
|
PLUGIN_NAME = CrossPoint Reader
|
|
CALIBRE = /Applications/calibre.app/Contents/MacOS/calibre-customize
|
|
|
|
install:
|
|
$(CALIBRE) -b $(PLUGIN_DIR)
|
|
|
|
list:
|
|
$(CALIBRE) -l
|
|
|
|
remove:
|
|
$(CALIBRE) -r "$(PLUGIN_NAME)"
|