diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e96b927..a716eeb 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -22,7 +22,7 @@ jobs: run: git clone https://git.0x45.cz/em/mixtape.git /workspace/em/mixtape - name: Build Chordpro - run: make + run: make pdf html - name: Build Zola run: zola build diff --git a/makefile b/makefile index cf2117e..d386a54 100644 --- a/makefile +++ b/makefile @@ -12,7 +12,7 @@ SONG_PDF := $(patsubst %$(SRC_EXTENSION),%.pdf,$(SONG_CHO)) SONG_HTML := $(patsubst %$(SRC_EXTENSION),%.html,$(SONG_CHO)) SONGBOOK := songbook.pdf -.DEFAULT_GOAL := all +.DEFAULT_GOAL := pdf %.pdf: %$(SRC_EXTENSION) $(CHORDPRO_CMD) -o $@ $< @@ -20,7 +20,7 @@ SONGBOOK := songbook.pdf %.html: %$(SRC_EXTENSION) $(CHORDPRO_CMD) -o $@ $< -all: $(SONG_PDF) $(SONG_HTML) $(SONGBOOK) +all: pdf html songbook $(SONGBOOK): $(SONG_PDF) gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$@ $^ @@ -31,6 +31,10 @@ html: $(SONG_HTML) .PHONY: pdf pdf: $(SONG_PDF) +.PHONY: songbook +songbook: pdf + $(MAKE) $(SONGBOOK) + .PHONY: clean clean: rm -f $(SONG_PDF) $(SONG_HTML) $(SONGBOOK) diff --git a/readme.md b/readme.md index 41fcd8a..ebfd892 100644 --- a/readme.md +++ b/readme.md @@ -1,12 +1,14 @@ +My personal guitar chord-book written in [ChordPro](https://www.chordpro.org/). + ## Requirements -- [`chordpro`](https://github.com/ChordPro/chordpro/) -- `ghostscript` -- `zola` (optional) +- `docker` +- `ghostscript` (optional for `songbook` make target) +- `zola` (optional for web deployment) The makefile uses Docker with the official iamge `chordpro/chordpro:latest`. It can be seamlesly integrated with a shell alias in case you want to use -chordpro directly in your shell outside of make: +ChordPro directly in your shell outside of make: ``` alias chordpro="docker run -ti --rm --env HOME=\$HOME --env USER=\$USER --workdir \$(pwd) --volume \$HOME:\$HOME chordpro/chordpro:latest chordpro" @@ -14,10 +16,15 @@ alias chordpro="docker run -ti --rm --env HOME=\$HOME --env USER=\$USER --workdi ## Building -`make` defaults to `all` which builds individual PDF and HTML files for -all songs. It also builds one complete PDF songbook with all songs. +`make` defaults to `pdf` which builds individual PDF files for all songs. -Available targets: `all`, `pdf`, `html`, `clean` +Target | Description +-|- +`all` | `pdf`, `html`, `songbook` +`pdf` | Build individual PDF files +`html` | Build individual HTML files +`songbook` | Build one complete PDF songbook with all songs +`clean` | Remove all generated files You can also build PDF for a specific page with: