Skip to content

Commit

Permalink
Create 'clean' target for makefile
Browse files Browse the repository at this point in the history
Also make 'all' and 'clean' targets '.PHONY'
  • Loading branch information
norwd committed Jan 12, 2025
1 parent 716f04e commit a5f3b4f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ ZIPFILE = $(PROJECT)-$(VERSION).zip

all: ebooks pdf

.PHONY: all

clean:
latexmk -C

.PHONY: clean

pdf:
latexmk

Expand Down

0 comments on commit a5f3b4f

Please sign in to comment.