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
RevLine 
[8032]1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
[7645]3
[8271]4
5LIB_PREFIX=$(MAINSRCDIR)/lib
6include $(MAINSRCDIR)/lib/BuildLibs.am
7
8
9
[7648]10INCLUDES= -I../../../extern_libs
[7645]11
[7962]12noinst_LIBRARIES = libORXscript.a
[7648]13
[8271]14libORXscript_a_SOURCES = \
[8408]15                script.cc \
16                script_manager.cc \
17                script_class.cc \
[9869]18                script_method.cc \
19                executor_lua_state.cc
20
[7648]21AM_CPPFLAGS= @LUA_INCLUDES@
22
[8271]23noinst_HEADERS = \
24                lunar.h\
25                script.h\
[8408]26                script_manager.h \
27                script_class.h \
[9869]28                script_method.h \
29                executor_lua_state.h
[7645]30
[7702]31
[7975]32
[7702]33
[8271]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.