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
+
1
3
INPUT_FILE = README.md
2
4
OUTPUT_FILE = artifacts/python-for-coding-interview.pdf
3
5
4
6
.PHONY : linter
5
7
linter :
6
- markdownlint README.md --disable MD013 MD025
8
+ markdownlint $( INPUT_FILE ) --disable MD013 MD025
7
9
8
10
.PHONY : pdf
9
11
pdf :
10
12
pandoc $(INPUT_FILE ) \
11
13
--pdf-engine=xelatex \
12
14
-M date=" ` date " +%B%e, %Y" ` " \
13
15
-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
9
9
This guide includes a list of several and useful ` Python ` data structures to know for coding interviews.
10
10
11
11
It 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.
13
13
14
14
Additional material:
15
15
You can’t perform that action at this time.
0 commit comments