]> git.ipfire.org Git - ipfire-logos.git/blame - plymouth/Makefile
Fix description of the plymouth theme.
[ipfire-logos.git] / plymouth / Makefile
CommitLineData
3ae5efe3
MT
1###############################################################################
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
4###############################################################################
5
6include ../Makeconf
7include ../Makerules
8
9PLYMOUTH_THEME_DIR = $(PREFIX)/share/plymouth/themes
10
11THEMES = ipfire-logo
12
13.PHONY: all clean
14all clean: # Nothing to do
15
16.PHONY: install
17install:
18 -mkdir -pv $(DESTDIR)$(PLYMOUTH_THEME_DIR)
19 for theme in $(THEMES); do \
20 cp -vfr $${theme} $(DESTDIR)$(PLYMOUTH_THEME_DIR); \
21 done