Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 8467 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
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 \
18                script_method.cc \
19                \
[8271]20                account.cc \
21                object.cc
[7648]22
[8271]23
[7648]24AM_CPPFLAGS= @LUA_INCLUDES@
25
[8271]26noinst_HEADERS = \
27                lunar.h\
28                script.h\
[8408]29                script_manager.h \
30                script_class.h \
31                script_method.h
[7645]32
[7702]33
[7975]34
[7702]35
[8271]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.