From 52adfcab32527beaad4fbff1cb2bb241a4904c06 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 8 Aug 2013 09:50:57 +0200 Subject: use imagemagick for SVG to PNG conversion --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b46132e..505fdef 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC := gcc MD := markdown -CONVERT := inkscape --export-png +CONVERT := convert -define png:compression-level=9 -background transparent INSTALL := install RM := rm CFLAGS += -O2 -Wall -Werror @@ -16,10 +16,10 @@ netlink-notify: netlink-notify.c -DVERSION="\"$(VERSION)\"" icons: - $(CONVERT) netlink-notify-up.png netlink-notify-up.svg - $(CONVERT) netlink-notify-down.png netlink-notify-down.svg - $(CONVERT) netlink-notify-address.png netlink-notify-address.svg - $(CONVERT) netlink-notify-away.png netlink-notify-away.svg + $(CONVERT) netlink-notify-up.svg netlink-notify-up.png + $(CONVERT) netlink-notify-down.svg netlink-notify-down.png + $(CONVERT) netlink-notify-address.svg netlink-notify-address.png + $(CONVERT) netlink-notify-away.svg netlink-notify-away.png README.html: README.md $(MD) README.md > README.html -- cgit v1.2.3-54-g00ecf