Files
desktop-base/ceratopsian-theme/grub/Makefile
T
2025-05-06 16:05:38 +02:00

30 lines
552 B
Makefile

dir = usr/share/desktop-base/ceratopsian-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