Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/script_engine/Makefile.am @ 9640

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

merged the script_engine back here

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