Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/script_engine/Makefile.am @ 9869

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

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

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                executor_lua_state.cc
20
21AM_CPPFLAGS= @LUA_INCLUDES@
22
23noinst_HEADERS = \
24                lunar.h\
25                script.h\
26                script_manager.h \
27                script_class.h \
28                script_method.h \
29                executor_lua_state.h
30
31
32
33
34check_PROGRAMS = example
35example_DEPENDENCIES = \
36                $(MAINSRCDIR)/world_entities/libORXwe.a \
37                $(libORXlibs_a_LIBRARIES_) \
38                $(MAINSRCDIR)/util/libORXutils.a
39example_LDADD = \
40                $(MAINSRCDIR)/util/libORXutils.a \
41                $(libORXlibs_a_LIBRARIES_) \
42                libORXscript.a -L../../../extern_libs @LUA_LIBS@ \
43                $(MAINSRCDIR)/world_entities/libORXwe.a \
44                $(libORXlibs_a_LIBRARIES_) \
45                $(MAINSRCDIR)/util/libORXutils.a
46
47example_SOURCES= \
48                example.cc \
49                \
50                ../util/executor/executor_lua.cc
Note: See TracBrowser for help on using the repository browser.