Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile.mingw.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.mingw.in')
-rw-r--r--Makefile.mingw.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.mingw.in b/Makefile.mingw.in
index 8a19f08..fbe36f9 100644
--- a/Makefile.mingw.in
+++ b/Makefile.mingw.in
@@ -153,3 +153,11 @@ prep: Makefile.mingw
find $(GCOMPRIS_INSTALL_DIR) -name "*.in" -exec rm -f {} \;
find $(GCOMPRIS_INSTALL_DIR) -name "*~" -exec rm -f {} \;
+svg2png:
+ sed -i "s:\(/[a-zA-Z_-]\+\\.\)svg:\1png:g" boards/*.xml.in
+ sed -i "s:\(/[a-zA-Z_-]\+\\.\)svg:\1png:g" src/*/*.c
+ sed -i "s:\(/[a-zA-Z_-]\+\\.\)svg:\1png:g" src/*/*/*.py
+ for f in `find boards -name '*.svg'`; \
+ do e=`echo $$f | sed s/.svg/.png/`; \
+ inkscape -z -f $$f -e $$e; \
+ done