Split kali-theme into multiple top-level directories

That way every "part" that needs to be provided is visible as a
top-level directory and we can document in which context each directory
is used.
This commit is contained in:
Raphaël Hertzog
2019-11-01 18:08:08 +00:00
parent b92728c0de
commit 78a5785aa6
53 changed files with 71 additions and 74 deletions
+22
View File
@@ -0,0 +1,22 @@
dir = usr/share/desktop-base/kali-theme/grub
files = \
grub-4x3.png \
grub-16x9.png
build: $(files)
clean:
rm -f grub-4x3.png grub-16x9.png
install:
# Do nothing, installed by top-level makefile into desktop-base
# directory
grub-4x3.png: grub-4x3.svg
rsvg-convert $< > $@
grub-16x9.png: grub-16x9.svg
rsvg-convert $< > $@
include ../../Makefile.inc