]> git.ipfire.org Git - ipfire-logos.git/blob - bootloader/Makefile
Add background image for grub.
[ipfire-logos.git] / bootloader / Makefile
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 include ../Makeconf
7 include ../Makerules
8
9 GRUB_THEME_PATH = $(DESTDIR)/boot/grub/themes/system/
10
11 BOOTLOADER_BACKGROUND_IN = background.svg
12 BOOTLOADER_BACKGROUND_OUT = background.png
13
14 all: $(BOOTLOADER_BACKGROUND_OUT)
15
16 $(BOOTLOADER_BACKGROUND_OUT): $(BOOTLOADER_BACKGROUND_IN)
17 convert $< $@
18
19 install: $(BOOTLOADER_BACKGROUND_OUT)
20 -mkdir pv $(GRUB_THEME_PATH)
21 install -m 644 $< $(GRUB_THEME_PATH)
22
23 clean:
24 rm -vf $(BOOTLOADER_BACKGROUND_OUT)