We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94cafa8 commit f95d4daCopy full SHA for f95d4da
docs/Makefile
@@ -12,9 +12,13 @@ DB2PDF_OPTIONS=\
12
-V %generate-article-toc% \
13
-V %generate-article-titlepage-on-separate-page%
14
15
-all: delete-unpacked-pyle unpack-pyle start-pyle targets
16
- cat pyle.log
17
- make delete-unpacked-pyle
+all:
+ OK=true && \
+ make prepare-pyle && \
18
+ { make targets || OK=false; } && \
19
+ cat pyle.log && \
20
+ make delete-unpacked-pyle && \
21
+ $$OK
22
23
bundle:
24
make all
@@ -24,6 +28,8 @@ bundle:
28
cp ./api-guide.pdf bundle/.
25
29
cp "RabbitMQ Service Model.pdf" bundle/.
26
30
31
+prepare-pyle: delete-unpacked-pyle unpack-pyle start-pyle
32
+
27
33
targets: $(TARGET)
34
35
clean:
0 commit comments