[Makefile] Move the Makefile to the top level
This commit is contained in:
parent
f7792d0b02
commit
a31c0dba00
2 changed files with 16 additions and 16 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
RSVGCONVERT := $(shell command -v rsvg-convert 2> /dev/null)
|
||||||
|
OPTIPNG := $(shell command -v optipng 2> /dev/null)
|
||||||
|
|
||||||
|
.PHONY: all png clean
|
||||||
|
|
||||||
|
all: png
|
||||||
|
|
||||||
|
png: images/boardicons.png images/icons/admin.png images/icons/alerts.png images/icons/home.png images/icons/login.png images/icons/members.png images/icons/moderate.png images/icons/pm.png images/icons/profile.png images/icons/recent.png images/icons/search.png images/icons/unread_replies.png images/icons/unread.png
|
||||||
|
|
||||||
|
%.png: %.svg
|
||||||
|
mkdir --parents $(shell dirname $@)
|
||||||
|
$(RSVGCONVERT) $< --output $@
|
||||||
|
$(OPTIPNG) -o7 -quiet $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm --force images/boardicons.png images/icons/admin.png images/icons/alerts.png images/icons/home.png images/icons/login.png images/icons/members.png images/icons/moderate.png images/icons/pm.png images/icons/profile.png images/icons/recent.png images/icons/search.png images/icons/unread_replies.png images/icons/unread.png
|
|
@ -1,16 +0,0 @@
|
||||||
RSVGCONVERT := $(shell command -v rsvg-convert 2> /dev/null)
|
|
||||||
OPTIPNG := $(shell command -v optipng 2> /dev/null)
|
|
||||||
|
|
||||||
.PHONY: all png clean
|
|
||||||
|
|
||||||
all: png
|
|
||||||
|
|
||||||
png: boardicons.png icons/admin.png icons/alerts.png icons/home.png icons/login.png icons/members.png icons/moderate.png icons/pm.png icons/profile.png icons/recent.png icons/search.png icons/unread_replies.png icons/unread.png
|
|
||||||
|
|
||||||
%.png: %.svg
|
|
||||||
mkdir --parents $(shell dirname $@)
|
|
||||||
$(RSVGCONVERT) $< --output $@
|
|
||||||
$(OPTIPNG) -o7 -quiet $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm --force boardicons.png icons/admin.png icons/alerts.png icons/home.png icons/login.png icons/members.png icons/moderate.png icons/pm.png icons/profile.png icons/recent.png icons/search.png icons/unread_replies.png icons/unread.png
|
|
Loading…
Reference in a new issue