Files
desktop-base/futureprototype-theme/grub/Makefile
2023-02-16 11:56:47 +01:00

30 lines
556 B
Makefile

dir = usr/share/desktop-base/futureprototype-theme/grub
.PHONY: build clean install
files = \
grub-4x3.png \
grub-16x9.png
build: $(files)
clean:
rm -f grub-4x3.png.raw grub-16x9.png.raw
rm -f grub-4x3.png grub-16x9.png
install:
install -d $(DESTDIR)/$(dir)
$(INSTALL_DATA) $(wildcard *.png *.sh) $(DESTDIR)/$(dir)
grub-4x3.png: grub-4x3.svg
inkscape --export-filename=$@ $<
mv $@ $@.raw
optipng $@.raw -out $@
grub-16x9.png: grub-16x9.svg
inkscape --export-filename=$@ $<
mv $@ $@.raw
optipng $@.raw -out $@
include ../../Makefile.inc