Skip to content

Commit 3059592

Browse files
committed
CCM-12616: move docs dependencies to a separate make command
1 parent f068287 commit 3059592

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ include scripts/init.mk
1010
quick-start: config clean build serve-docs # Quick start target to setup, build and serve docs @Pipeline
1111

1212
dependencies:: # Install dependencies needed to build and test the project @Pipeline
13-
$(MAKE) -C docs install
1413
$(MAKE) -C src/cloudevents install
1514
$(MAKE) -C src/eventcatalogasyncapiimporter install
1615
$(MAKE) -C lambdas/mesh-poll install
@@ -20,7 +19,10 @@ dependencies:: # Install dependencies needed to build and test the project @Pipe
2019
$(MAKE) -C utils/py-mock-mesh install
2120
npm install --workspaces
2221

23-
build: # Build the project artefact @Pipeline
22+
dependencies-docs:: # Install documentation dependencies @Pipeline
23+
$(MAKE) -C docs install
24+
25+
build: dependencies-docs # Build the project artefact @Pipeline
2426
$(MAKE) -C docs build
2527

2628
debug:

0 commit comments

Comments
 (0)