###############################################################################
# IPFire.org    - An Open Source Firewall Solution                            #
# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
###############################################################################

include ../Makeconf
include ../Makerules

PLYMOUTH_THEME_DIR = $(PREFIX)/share/plymouth/themes

THEMES = ipfire-logo

.PHONY: all clean
all clean: # Nothing to do

.PHONY: install
install:
	-mkdir -pv $(DESTDIR)$(PLYMOUTH_THEME_DIR)
	for theme in $(THEMES); do \
		cp -vfr $${theme} $(DESTDIR)$(PLYMOUTH_THEME_DIR); \
	done
