commit c6b03a77a3d62ff96e164dd46f2cd43a6461ee62
Author: Michael Day <contact@michaelcday.com>
AuthorDate: Sat Aug 20 15:11:28 2022 -0400
Commit: Michael Day <contact@michaelcday.com>
CommitDate: Sat Aug 20 15:35:21 2022 -0400
Add placeholder icons for non-Doom games
---
data/.gitignore | 3 +++
data/Makefile.am | 22 ++++++++++++++++++++--
data/heretic.ico | Bin 0 -> 36726 bytes
data/heretic.png | Bin 0 -> 4551 bytes
data/hexen.ico | Bin 0 -> 36726 bytes
data/hexen.png | Bin 0 -> 4551 bytes
data/strife.ico | Bin 0 -> 36726 bytes
data/strife.png | Bin 0 -> 4551 bytes
8 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/data/.gitignore b/data/.gitignore
index a76bba93..f1bc7677 100644
--- a/data/.gitignore
+++ b/data/.gitignore
@@ -1,4 +1,7 @@
Makefile.in
Makefile
*-doom.png
+*-heretic.png
+*-hexen.png
*-setup.png
+*-strife.png
diff --git a/data/Makefile.am b/data/Makefile.am
index 524e4d57..1b6a44c0 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -3,19 +3,37 @@ EXTRA_DIST= \
README \
doom.ico \
doom.png \
+ heretic.ico \
+ heretic.png \
+ hexen.ico \
+ hexen.png \
setup.ico \
setup.png \
+ strife.ico \
+ strife.png \
wadfile.png \
convert-icon
iconsdir = $(prefix)/share/icons/hicolor/128x128/apps
-icons_DATA = @PROGRAM_PREFIX@doom.png \
- @PROGRAM_PREFIX@setup.png
+icons_DATA = @PROGRAM_PREFIX@doom.png \
+ @PROGRAM_PREFIX@heretic.png \
+ @PROGRAM_PREFIX@hexen.png \
+ @PROGRAM_PREFIX@setup.png \
+ @PROGRAM_PREFIX@strife.png
@PROGRAM_PREFIX@doom.png : doom.png
cp $(top_srcdir)/data/doom.png $@
+@PROGRAM_PREFIX@heretic.png : heretic.png
+ cp $(top_srcdir)/data/heretic.png $@
+
+@PROGRAM_PREFIX@hexen.png : hexen.png
+ cp $(top_srcdir)/data/hexen.png $@
+
@PROGRAM_PREFIX@setup.png : setup.png
cp $(top_srcdir)/data/setup.png $@
+@PROGRAM_PREFIX@strife.png : strife.png
+ cp $(top_srcdir)/data/strife.png $@
+
CLEANFILES = $(icons_DATA)
diff --git a/data/heretic.ico b/data/heretic.ico
new file mode 100644
index 00000000..025cb698
Binary files /dev/null and b/data/heretic.ico differ
diff --git a/data/heretic.png b/data/heretic.png
new file mode 100644
index 00000000..3f6b37b1
Binary files /dev/null and b/data/heretic.png differ
diff --git a/data/hexen.ico b/data/hexen.ico
new file mode 100644
index 00000000..025cb698
Binary files /dev/null and b/data/hexen.ico differ
diff --git a/data/hexen.png b/data/hexen.png
new file mode 100644
index 00000000..3f6b37b1
Binary files /dev/null and b/data/hexen.png differ
diff --git a/data/strife.ico b/data/strife.ico
new file mode 100644
index 00000000..025cb698
Binary files /dev/null and b/data/strife.ico differ
diff --git a/data/strife.png b/data/strife.png
new file mode 100644
index 00000000..3f6b37b1
Binary files /dev/null and b/data/strife.png differ