aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-06-07 21:38:41 +0100
committerSilvio Rhatto <rhatto@riseup.net>2024-06-07 21:38:41 +0100
commit2e998d28c48c740024e265e5fd9d8743adee1c4c (patch)
tree599f0f7046c6da3ffeb79dc4d4f2c2da410d7227
parentfaf5007a86708db0121c2a7fd84b3d8ceec199d7 (diff)
downloadbookup-2e998d28c48c740024e265e5fd9d8743adee1c4c.tar.gz
bookup-2e998d28c48c740024e265e5fd9d8743adee1c4c.tar.bz2
Feat: Makefile: site target
-rw-r--r--Makefile.bookup11
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
#