Skip to content

Commit

Permalink
Create Makefiles (Linux and Windows) (#5)
Browse files Browse the repository at this point in the history
* Add additional specifications for build process with Makefile

* Uodate LaTeX build tools needed

* Update packages needed

* Another trial

* One more simple trial

* Relative paths

* New try
  • Loading branch information
RobPasMue authored Jul 2, 2022
1 parent 8455494 commit 514a3f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-cv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Set up Git repository
uses: actions/checkout@v3

- name: Install latexmk
- name: Install LaTeX build tools
run: |
sudo apt-get update -y
sudo apt-get install -y latexmk
sudo apt-get install -y latexmk texlive-fonts-extra
- name: Run the Makefile
run: |
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ all: ROBERTO-PASTOR.pdf
# missing file reference and interactively asking you for an alternative.

ROBERTO-PASTOR.pdf: src/cv/ROBERTO-PASTOR.tex
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make src/cv/ROBERTO-PASTOR.tex -outdir=src/cv/out
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make ./src/cv/ROBERTO-PASTOR.tex -cd -auxdir=out -outdir=out

clean:
latexmk -CA -outdir=src/cv/out
latexmk -CA -outdir=src/cv/out -auxdir=src/cv/out

0 comments on commit 514a3f3

Please sign in to comment.