Skip to content

Commit cbcfca9

Browse files
committed
move PHONY calls to above each of the targets for clarity
1 parent 73dc758 commit cbcfca9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
.PHONY: all build clean
2-
31
.DEFAULT_GOAL := all
2+
3+
.PHONY: all
44
all: build
55

6+
.PHONY: clean
67
clean:
78
rm -f *.log *.dvi *.synctex.gz *.pdf
89

10+
.PHONY: build
911
build: *.pdf
1012

1113
%.pdf: %.tex

0 commit comments

Comments
 (0)