mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ed4411602c
- Remove file related functions from loader. * All packages must be builtin. - Remove os.tmpname. - Interface with TLSF. - Don't abort() when out of memory.
14 lines
279 B
Makefile
14 lines
279 B
Makefile
PKG_NAME=lua
|
|
PKG_URL=https://github.com/lua/lua.git
|
|
# tag: v5-3-4
|
|
PKG_VERSION=e354c6355e7f48e087678ec49e340ca0696725b1
|
|
PKG_LICENSE=MIT
|
|
|
|
.PHONY: all
|
|
|
|
all: Makefile.lua
|
|
@cp Makefile.lua $(PKG_BUILDDIR)
|
|
"$(MAKE)" -C $(PKG_BUILDDIR) -f Makefile.lua
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|