Changeset 8271 in orxonox.OLD for trunk/src/lib/script_engine/Makefile.am
- Timestamp:
- Jun 8, 2006, 4:50:50 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/script_engine/Makefile.am
r8061 r8271 1 1 MAINSRCDIR=../.. 2 2 include $(MAINSRCDIR)/defs/include_paths.am 3 4 5 LIB_PREFIX=$(MAINSRCDIR)/lib 6 include $(MAINSRCDIR)/lib/BuildLibs.am 7 8 3 9 4 10 INCLUDES= -I../../../extern_libs … … 6 12 noinst_LIBRARIES = libORXscript.a 7 13 8 libORXscript_a_SOURCES = 14 libORXscript_a_SOURCES = \ 15 script.cc\ 16 script_manager.cc\ 17 script_class.cc\ 18 account.cc \ 19 object.cc 20 9 21 10 22 AM_CPPFLAGS= @LUA_INCLUDES@ 11 23 12 bin_PROGRAMS = account 13 account_SOURCES = \ 14 account.cc\ 15 Script.cc 24 noinst_HEADERS = \ 25 lunar.h\ 26 script.h\ 27 script_manager.h\ 28 script_class.h 16 29 17 30 18 31 19 account_LDADD = libORXscript.a -L../../../extern_libs @LUA_LIBS@20 32 21 #main_LDFLAGS = 33 check_PROGRAMS = example 22 34 23 35 24 noinst_HEADERS = \ 25 lunar.h\ 26 Script.h 36 37 38 39 40 41 example_DEPENDENCIES = \ 42 $(MAINSRCDIR)/world_entities/libORXwe.a \ 43 $(libORXlibs_a_LIBRARIES_) \ 44 $(MAINSRCDIR)/util/libORXutils.a 45 46 example_LDADD = \ 47 $(MAINSRCDIR)/util/libORXutils.a \ 48 $(libORXlibs_a_LIBRARIES_) \ 49 libORXscript.a -L../../../extern_libs @LUA_LIBS@ \ 50 $(MAINSRCDIR)/world_entities/libORXwe.a \ 51 $(libORXlibs_a_LIBRARIES_) \ 52 $(MAINSRCDIR)/util/libORXutils.a 53 54 example_SOURCES= \ 55 example.cc \ 56 \ 57 ../util/executor/executor_lua.cc
Note: See TracChangeset
for help on using the changeset viewer.