File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ .DEFAULT_GOAL := all
2+
13INPUT_FILE = README.md
24OUTPUT_FILE = artifacts/python-for-coding-interview.pdf
35
46.PHONY : linter
57linter :
6- markdownlint README.md --disable MD013 MD025
8+ markdownlint $( INPUT_FILE ) --disable MD013 MD025
79
810.PHONY : pdf
911pdf :
1012 pandoc $(INPUT_FILE ) \
1113 --pdf-engine=xelatex \
1214 -M date=" ` date " +%B%e, %Y" ` " \
1315 -o $(OUTPUT_FILE )
16+
17+ .PHONY : all
18+ all : linter pdf
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ geometry: margin=1in
99This guide includes a list of several and useful ` Python ` data structures to know for coding interviews.
1010
1111It is intended to show the main data structures incorporated in the language
12- and their useful functions. More advance ` Python ` feature will not be shown here.
12+ and their useful functions. More advance ` Python ` features will not be shown here.
1313
1414Additional material:
1515
You can’t perform that action at this time.
0 commit comments