mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
add sorting directories as files move picross files to a hidden folder use directory for lua_scripts, sgt_puzzles make plugin browser able to handle 1st level directories Change-Id: I30852d71dc992c378d5790756e94f06f5a2e9bef
22 lines
842 B
Makefile
22 lines
842 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
LUASCR_SRCDIR := $(APPSDIR)/plugins/lua_scripts
|
|
LUASCR_BUILDDIR := $(BUILDDIR)/apps/plugins/lua_scripts
|
|
LUASCRS := $(wildcard $(LUASCR_SRCDIR)/*.lua)
|
|
#DUMMY := $(info [${LUASCRS}])
|
|
|
|
DUMMY : all
|
|
|
|
all: $(subst $(LUASCR_SRCDIR)/,$(LUASCR_BUILDDIR)/,$(LUASCRS))
|
|
|
|
$(LUASCR_BUILDDIR)/%.lua: $(LUASCR_SRCDIR)/%.lua | $(LUASCR_BUILDDIR)
|
|
$(call PRINTS,CP $(subst $(APPSDIR)/,,$<))cp $< $@
|
|
$(LUASCR_BUILDDIR):
|
|
$(call PRINTS,MKDIR $@)mkdir -p $(LUASCR_BUILDDIR)/
|