2021-01-27 10:18:13 -06:00
|
|
|
#
|
2026-05-21 10:58:05 -04:00
|
|
|
# This file is intended to drive the build of the entire doc tree. In
|
|
|
|
|
# order to build both the documentation and the website, one only needs
|
|
|
|
|
# to execute:
|
2021-01-27 10:18:13 -06:00
|
|
|
#
|
|
|
|
|
# make all
|
|
|
|
|
#
|
2026-05-21 10:58:05 -04:00
|
|
|
# Here at the top-level of the repository. The same target may be
|
|
|
|
|
# executed in the individual directories to build just the documentation
|
|
|
|
|
# or just the website.
|
2021-01-27 10:18:13 -06:00
|
|
|
#
|
2026-05-21 10:58:05 -04:00
|
|
|
# Note that the Makefiles within the individual components may also be
|
|
|
|
|
# used to spin up hugo's internal webserver for testing, by default on
|
|
|
|
|
# port 1313. This can be done with the `run` target.
|
2021-01-27 10:18:13 -06:00
|
|
|
#
|
|
|
|
|
|
2026-05-21 10:58:05 -04:00
|
|
|
SUBDIR+= documentation
|
|
|
|
|
SUBDIR+= website
|
2021-01-27 10:18:13 -06:00
|
|
|
|
|
|
|
|
SUBDIR_PARALLEL= yes
|
|
|
|
|
|
2023-02-17 16:30:44 +01:00
|
|
|
run:
|
|
|
|
|
@(echo The 'run' target is only valid in a subdirectory; exit 1)
|
|
|
|
|
|
2021-01-27 10:18:13 -06:00
|
|
|
.include <bsd.subdir.mk>
|