diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-07 21:38:41 +0100 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-07 21:38:41 +0100 |
commit | 2e998d28c48c740024e265e5fd9d8743adee1c4c (patch) | |
tree | 599f0f7046c6da3ffeb79dc4d4f2c2da410d7227 | |
parent | faf5007a86708db0121c2a7fd84b3d8ceec199d7 (diff) | |
download | bookup-2e998d28c48c740024e265e5fd9d8743adee1c4c.tar.gz bookup-2e998d28c48c740024e265e5fd9d8743adee1c4c.tar.bz2 |
Feat: Makefile: site target
-rw-r--r-- | Makefile.bookup | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.bookup b/Makefile.bookup index 4998000..dff64f8 100644 --- a/Makefile.bookup +++ b/Makefile.bookup @@ -46,13 +46,13 @@ YEAR = $(shell date +%Y) # Phony targets # -.PHONY: archive +.PHONY: archive site # # Default target # -all: submodules book notes assemble clean +all: submodules book notes site assemble clean @true # @@ -248,6 +248,13 @@ bookdown_notes_html: notes: compile_notes bookdown_clean bookdown_notes_html move_notes clean # +# Website +# This is a phony target to be overrided in another Makefile +# +site: + @true + +# # Remote copies # |