Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/bsp_model/src/lib/script_engine/Makefile.am @ 8538

Last change on this file since 8538 was 8408, checked in by bensch, 18 years ago

trunk: merged the script_engine branche back here
merged with command
svn merge https://svn.orxonox.net/orxonox/branches/script_engine . -r8284:HEAD
no conflicts

File size: 1.2 KB
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4
5LIB_PREFIX=$(MAINSRCDIR)/lib
6include $(MAINSRCDIR)/lib/BuildLibs.am
7
8
9
10INCLUDES= -I../../../extern_libs
11
12noinst_LIBRARIES = libORXscript.a
13
14libORXscript_a_SOURCES = \
15                script.cc \
16                script_manager.cc \
17                script_class.cc \
18                script_method.cc \
19                \
20                account.cc \
21                object.cc
22
23
24AM_CPPFLAGS= @LUA_INCLUDES@
25
26noinst_HEADERS = \
27                lunar.h\
28                script.h\
29                script_manager.h \
30                script_class.h \
31                script_method.h
32
33
34
35
36check_PROGRAMS = example
37example_DEPENDENCIES = \
38                $(MAINSRCDIR)/world_entities/libORXwe.a \
39                $(libORXlibs_a_LIBRARIES_) \
40                $(MAINSRCDIR)/util/libORXutils.a
41example_LDADD = \
42                $(MAINSRCDIR)/util/libORXutils.a \
43                $(libORXlibs_a_LIBRARIES_) \
44                libORXscript.a -L../../../extern_libs @LUA_LIBS@ \
45                $(MAINSRCDIR)/world_entities/libORXwe.a \
46                $(libORXlibs_a_LIBRARIES_) \
47                $(MAINSRCDIR)/util/libORXutils.a
48
49example_SOURCES= \
50                example.cc \
51                \
52                ../util/executor/executor_lua.cc
Note: See TracBrowser for help on using the repository browser.