8 lines
125 B
Makefile
8 lines
125 B
Makefile
all: graph
|
|
|
|
graph:
|
|
@find ./graphs -name '*.tex' -exec latexmk -pdf {} \;
|
|
@cp ./build/*.pdf ./graphs/
|
|
|
|
clean:
|
|
rm -rf build
|