diff options
Diffstat (limited to 'Makefile.bookup')
-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 # |