File: Makefile.am

package info (click to toggle)
enigma 1.30%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 76,132 kB
  • sloc: xml: 162,251; cpp: 67,393; ansic: 28,606; makefile: 1,986; sh: 1,298; yacc: 288; perl: 84; sed: 16
file content (29 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (5)
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
## Makefile.am -- Process this file with automake to process Makefile.in

noinst_LIBRARIES = liblua.a

# noinst_PROGRAMS = tolua

EXTRA_DIST = README lexerproxy.c

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 lundump.c lvm.c lzio.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 tolua++.h \
 tolua_event.c tolua_event.h tolua_is.c tolua_map.c tolua_push.c \
 tolua_to.c \
 lexerproxy.h
liblua_a_CFLAGS = $(AM_CFLAGS)

if LINUX
liblua_a_CFLAGS += -DLUA_USE_LINUX
endif

if CXXLUA
liblua_a_CFLAGS += -x c++ $(AM_CXXFLAGS) $(CXXFLAGS)
endif