From 6fccac3f44be01b62b623959361cef2cbb9457a3 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Sun, 21 Apr 2024 08:09:53 -0400 Subject: 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 --- apps/plugins/picross/picross.make | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'apps/plugins/picross/picross.make') 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 @@ # $Id$ # -LUASCR_SRCDIR := $(APPSDIR)/plugins/picross -LUASCR_BUILDDIR := $(BUILDDIR)/apps/plugins/picross -LUASCRS := $(wildcard $(LUASCR_SRCDIR)/*.picross) +PICRSCR_SRCDIR := $(APPSDIR)/plugins/picross +PICRSCR_BUILDDIR := $(BUILDDIR)/apps/plugins/picross +PICRSCRS := $(wildcard $(PICRSCR_SRCDIR)/*.picross) -#DUMMY := $(info [${LUASCRS}]) +#DUMMY := $(info [${PICRSCRS}]) DUMMY : all -all: $(subst $(LUASCR_SRCDIR)/,$(LUASCR_BUILDDIR)/,$(LUASCRS)) +all: $(subst $(PICRSCR_SRCDIR)/,$(PICRSCR_BUILDDIR)/,$(PICRSCRS)) -$(LUASCR_BUILDDIR)/%.picross: $(LUASCR_SRCDIR)/%.picross | $(LUASCR_BUILDDIR) - $(call PRINTS,CP $(subst $(LUASCR_SRCDIR)/,,$<))cp $< $@ +$(PICRSCR_BUILDDIR)/%.picross: $(PICRSCR_SRCDIR)/%.picross | $(PICRSCR_BUILDDIR) + $(call PRINTS,CP $(subst $(PICRSCR_SRCDIR)/,,$<))cp $< $@ -$(LUASCR_BUILDDIR): - $(call PRINTS,MKDIR $@)mkdir -p $(LUASCR_BUILDDIR)/ +$(PICRSCR_BUILDDIR): + $(call PRINTS,MKDIR $@)mkdir -p $(PICRSCR_BUILDDIR)/ -- cgit v1.2.3