Add gitignore and makefile
This commit is contained in:
parent
795bdaec74
commit
4b4617abb8
|
@ -0,0 +1,3 @@
|
||||||
|
**.pdf
|
||||||
|
**.png
|
||||||
|
**.swp
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
all:
|
||||||
|
find . -type f -name '*.svg' -print0 | xargs -0 -n 1 -P 6 inkscape --actions="export-filename:$1.png; export-do;" --export-dpi 96 $1
|
||||||
|
find . -type f -name '*.svg' -print0 | xargs -0 -n 1 -P 6 inkscape --actions="export-filename:$1.pdf; export-do;" --export-dpi 600 $1
|
Loading…
Reference in New Issue