]> git.ipfire.org Git - ipfire-logos.git/blob - plymouth/Makefile
Bump version to 4
[ipfire-logos.git] / plymouth / 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 PLYMOUTH_THEME_DIR = $(PREFIX)/share/plymouth/themes
10
11 THEMES = ipfire-logo
12
13 .PHONY: all clean
14 all clean: # Nothing to do
15
16 .PHONY: install
17 install:
18 -mkdir -pv $(DESTDIR)$(PLYMOUTH_THEME_DIR)
19 for theme in $(THEMES); do \
20 cp -vfr $${theme} $(DESTDIR)$(PLYMOUTH_THEME_DIR); \
21 done