"same than" -> "same as".
[freeciv.git] / client / luascript / Makefile.am
blob55441f44cb636c31237b7a96c98170427ba20e9d
1 ## Process this file with automake to produce Makefile.in
3 noinst_LTLIBRARIES = \
4         libscripting_client.la
6 AM_CPPFLAGS = \
7         -I$(top_srcdir)/utility \
8         -I$(top_srcdir)/common \
9         -I$(top_srcdir)/common/networking \
10         -I$(top_srcdir)/common/scriptcore \
11         -I$(top_srcdir)/client \
12         -I$(top_srcdir)/dependencies/tinycthread \
13         $(LUA_CFLAGS) $(LUASQL_CFLAGS) $(TOLUA_CFLAGS)
15 # tolua_client_gen.[ch] are now distributed to aid in cross-compiling.
16 dist_libscripting_client_la_SOURCES = \
17         api_client_base.c       \
18         api_client_base.h       \
19         script_client.c         \
20         script_client.h         \
21         tolua_client_gen.c      \
22         tolua_client_gen.h
24 EXTRA_DIST = \
25         tolua_client.pkg
27 BUILT_SOURCES = \
28         tolua_client_gen.c      \
29         tolua_client_gen.h
31 libscripting_client_la_LIBADD = \
32         $(LUA_LIBS) $(TOLUA_LIBS) $(LUASQL_LIBS)
34 tolua_client_gen.c tolua_client_gen.h: tolua_client.pkg
35         $(TOLUA) -n client -o $(srcdir)/tolua_client_gen.c \
36         -H $(srcdir)/tolua_client_gen.h $(srcdir)/tolua_client.pkg
38 # These files are not generated to builddir, but to srcdir */
39 MAINTAINERCLEANFILES = \
40         $(srcdir)/tolua_client_gen.c \
41         $(srcdir)/tolua_client_gen.h