diff options
| author | Charlotte Koch <dressupgeekout@gmail.com> | 2023-06-05 22:39:29 -0700 |
|---|---|---|
| committer | Charlotte Koch <dressupgeekout@gmail.com> | 2023-06-05 22:39:29 -0700 |
| commit | ac1e192a52c37bba1787ad9e1f07d07d9765d39b (patch) | |
| tree | 915e5b7fd5ca0a898902ec55914a0bc8b0bf2c27 | |
| parent | 9405ee50ef1b1e9684e5e017e7ccb11fbb223af6 (diff) | |
Add 'make pdf' and 'make epub' shortcuts
| -rw-r--r-- | mk/willora.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mk/willora.mk b/mk/willora.mk index 8606431..4199622 100644 --- a/mk/willora.mk +++ b/mk/willora.mk @@ -29,6 +29,12 @@ CUSTOM_PDF_CONVERTER= ${WILLORABASE}/lib/willora_pdf_converter.rb .PHONY: all all: ${PDF_OUT} ${EPUB_OUT} +.PHONY: pdf +pdf: ${PDF_OUT} + +.PHONY: epub +epub: ${EPUB_OUT} + ########## ########## ########## # XXX: Figure out why I can't do this: |
