smf-theme/images/icons/Makefile
Antoine Le Gonidec ab44fe0a6d
Change the colours of icons generated from SVG sources
A Makefile is added in "images/icons" to re-generate the PNG icons from the SVG sources.
2024-07-24 11:44:47 +02:00

13 lines
394 B
Makefile

RSVGCONVERT := $(shell command -v rsvg-convert 2> /dev/null)
OPTIPNG := $(shell command -v optipng 2> /dev/null)
.PHONY: all png
all: png
png: admin.png alerts.png home.png login.png members.png moderate.png pm.png profile.png recent.png search.png unread_replies.png unread.png
%.png: %.svg
mkdir --parents $(shell dirname $@)
$(RSVGCONVERT) $< --output $@
$(OPTIPNG) -o7 -quiet $@