blob: 6d2de6c78da53d5396b220ca0107dcac5e15b2b6 [file] [log] [blame]
Andrew Geissler15ad1112021-01-08 16:09:43 -06001From 1868a111450be0053ab124df501cfcb7542f5e77 Mon Sep 17 00:00:00 2001
2From: Trevor Woerner <twoerner@gmail.com>
3Date: Fri, 4 Dec 2020 03:47:17 -0500
4Subject: [PATCH] game/Makefile: install sample png files
5
Patrick Williams864cc432023-02-09 14:54:44 -06006Upstream-Status: Submitted [https://github.com/AndrewFromMelbourne/raspidmx/pull/29]
Andrew Geissler15ad1112021-01-08 16:09:43 -06007Signed-off-by: Trevor Woerner <twoerner@gmail.com>
8---
9 game/Makefile | 2 ++
10 1 file changed, 2 insertions(+)
11
12diff --git a/game/Makefile b/game/Makefile
13index f33916d..d007972 100644
14--- a/game/Makefile
15+++ b/game/Makefile
16@@ -18,6 +18,8 @@ $(BIN): $(OBJS)
17 install: $(BIN)
18 install -d $(DESTDIR)/usr/bin
19 install -m 0755 $(BIN) $(DESTDIR)/usr/bin
20+ install -d $(DESTDIR)/usr/share/raspidmx
21+ install -m 444 spotlight.png sprite.png texture.png $(DESTDIR)/usr/share/raspidmx
22
23 clean:
24 @rm -f $(OBJS)