summaryrefslogtreecommitdiff
path: root/apps/plugins/picross/picross.make
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-04-21 08:09:53 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2024-04-28 01:03:16 -0400
commit6fccac3f44be01b62b623959361cef2cbb9457a3 (patch)
tree3370ad54c60f4a3eac99fde6bc61ce5776d58f88 /apps/plugins/picross/picross.make
parent2c7e47fc121014c1218d58248cd7c49cf2f38f0a (diff)
downloadrockbox-6fccac3f44be01b62b623959361cef2cbb9457a3.tar.gz
rockbox-6fccac3f44be01b62b623959361cef2cbb9457a3.zip
lua extend stars demo plugin
extend the stars demo plugin with hit testing and more draw_poly now returns the extent of the figure it drew the sim doesn't strip debug info now unnamed upvals will display "" instead of just ending the debug line [Bugfix] fix make file name conflict for picross Change-Id: If342aaff314972c187fa1f299d956e3482366e57
Diffstat (limited to 'apps/plugins/picross/picross.make')
-rw-r--r--apps/plugins/picross/picross.make18
1 files changed, 9 insertions, 9 deletions
diff --git a/apps/plugins/picross/picross.make b/apps/plugins/picross/picross.make
index 7e78c0fb1c..d34b251dac 100644
--- a/apps/plugins/picross/picross.make
+++ b/apps/plugins/picross/picross.make
@@ -7,18 +7,18 @@
7# $Id$ 7# $Id$
8# 8#
9 9
10LUASCR_SRCDIR := $(APPSDIR)/plugins/picross 10PICRSCR_SRCDIR := $(APPSDIR)/plugins/picross
11LUASCR_BUILDDIR := $(BUILDDIR)/apps/plugins/picross 11PICRSCR_BUILDDIR := $(BUILDDIR)/apps/plugins/picross
12LUASCRS := $(wildcard $(LUASCR_SRCDIR)/*.picross) 12PICRSCRS := $(wildcard $(PICRSCR_SRCDIR)/*.picross)
13 13
14#DUMMY := $(info [${LUASCRS}]) 14#DUMMY := $(info [${PICRSCRS}])
15 15
16DUMMY : all 16DUMMY : all
17 17
18all: $(subst $(LUASCR_SRCDIR)/,$(LUASCR_BUILDDIR)/,$(LUASCRS)) 18all: $(subst $(PICRSCR_SRCDIR)/,$(PICRSCR_BUILDDIR)/,$(PICRSCRS))
19 19
20$(LUASCR_BUILDDIR)/%.picross: $(LUASCR_SRCDIR)/%.picross | $(LUASCR_BUILDDIR) 20$(PICRSCR_BUILDDIR)/%.picross: $(PICRSCR_SRCDIR)/%.picross | $(PICRSCR_BUILDDIR)
21 $(call PRINTS,CP $(subst $(LUASCR_SRCDIR)/,,$<))cp $< $@ 21 $(call PRINTS,CP $(subst $(PICRSCR_SRCDIR)/,,$<))cp $< $@
22 22
23$(LUASCR_BUILDDIR): 23$(PICRSCR_BUILDDIR):
24 $(call PRINTS,MKDIR $@)mkdir -p $(LUASCR_BUILDDIR)/ 24 $(call PRINTS,MKDIR $@)mkdir -p $(PICRSCR_BUILDDIR)/