Skip to content

Commit

Permalink
Makefile tools version (#266)
Browse files Browse the repository at this point in the history
* Fix details on tools version display in makefile

- Show OS version
- Use macro instead of harcoded tool for convert.
  • Loading branch information
cedounet authored Oct 29, 2023
1 parent c245776 commit 1ce9802
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions book/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,9 @@ quick_ebook: cover/cover-page.xbb # run latex only once no biber, ref etc...
show_tools_version: # Show version of tools used on the build machine
- git log -n 1
@echo ""
- ${SHELL} --version
- uname -a
@echo ""
- $(SHELL) --version
@echo ""
- latexmk --version
@echo ""
Expand All @@ -310,11 +312,10 @@ show_tools_version: # Show version of tools used on the build machine
@echo ""
- ruby --version
@echo ""
- convert --version
- $(CONVERT_PIC) --version
@echo ""
- rsync --version


# You can find the value of variable X with the following command:
# make print-X
print-%: ; @echo $* = $($*) # Print a makefile variable
Expand Down

0 comments on commit 1ce9802

Please sign in to comment.