Skip to content

Commit c4c4837

Browse files
amadiosponce
authored andcommitted
Make verbose output the default in Makefile
1 parent 6ea281a commit c4c4837

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

talk/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ essentials: OPTIONS+=-pretex='\basictrue'
99
preview: all
1010
preview: OPTIONS+=-pvc
1111

12-
ifneq ($(V), 1)
12+
ifeq ($(QUIET), 1)
1313
OPTIONS+=-quiet
1414
else
1515
OPTIONS+=-interaction=nonstopmode
@@ -21,8 +21,8 @@ endif
2121
$(LATEXMK) $(OPTIONS) $<
2222

2323
clean:
24-
$(LATEXMK) -quiet -C
24+
$(LATEXMK) -C
2525

2626
clobber:
27-
$(LATEXMK) -quiet -C
27+
$(LATEXMK) -C
2828
$(RM) C++Course.pdf

0 commit comments

Comments
 (0)