1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
noinst_LIBRARIES = liblua.a
AM_CFLAGS = $(LIBLUA_CFLAGS)
liblua_a_SOURCES = \
lapi.c \
lauxlib.c \
lbaselib.c \
lcode.c \
ldblib.c \
ldebug.c \
ldo.c \
ldump.c \
lfunc.c \
lgc.c \
linit.c \
liolib.c \
llex.c \
lmathlib.c \
lmem.c \
loadlib.c \
lobject.c \
lopcodes.c \
loslib.c \
lparser.c \
lstate.c \
lstring.c \
lstrlib.c \
ltable.c \
ltablib.c \
ltm.c \
lua.c \
luac.c \
lundump.c \
lvm.c \
lzio.c \
print.c \
lapi.h \
lauxlib.h \
lcode.h \
ldebug.h \
ldo.h \
lfunc.h \
lgc.h \
llex.h \
llimits.h \
lmem.h \
lobject.h \
lopcodes.h \
lparser.h \
lstate.h \
lstring.h \
ltable.h \
ltm.h \
lua.h \
luaconf.h \
lualib.h \
lundump.h \
lvm.h \
lzio.h
EXTRA_DIST = LICENSE
|