diff options
| author | lneto <lneto@NetBSD.org> | 2013-12-02 04:57:41 +0000 |
|---|---|---|
| committer | lneto <lneto@NetBSD.org> | 2013-12-02 04:57:41 +0000 |
| commit | 89baa79c31aa084cc18dd888ca410c79d4166848 (patch) | |
| tree | c400d98b266105d17783bb6a25acb913e26f2c2d /sys/modules/lua/Makefile | |
| parent | 2d33779d574f6f4ca78cdf54810b407914673c9d (diff) | |
put Lua auxlib and some stdlibs in lua(4)
Diffstat (limited to 'sys/modules/lua/Makefile')
| -rw-r--r-- | sys/modules/lua/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/sys/modules/lua/Makefile b/sys/modules/lua/Makefile index b4ab3820b8a..ccb74a63282 100644 --- a/sys/modules/lua/Makefile +++ b/sys/modules/lua/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2013/12/02 04:39:10 lneto Exp $ +# $NetBSD: Makefile,v 1.4 2013/12/02 04:57:41 lneto Exp $ .include "../Makefile.inc" @@ -10,7 +10,7 @@ SRCS= lua.c WARNS= 1 -# Lua source code +# Lua core source code SRCS+= lapi.c \ lcode.c \ ldebug.c \ @@ -29,11 +29,15 @@ SRCS+= lapi.c \ ltm.c \ lundump.c \ lvm.c \ - lzio.c \ - # lauxlib.c \ - ltablib.c \ + lzio.c + +# Lua auxlib source code +SRCS+= lauxlib.c + +# Lua stdlibs source code +SRCS+= lbaselib.c \ lstrlib.c \ - lbaselib.c \ + ltablib.c \ linit.c # Compatability code |
