Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8271 in orxonox.OLD for trunk/src/lib/script_engine/Makefile.am


Ignore:
Timestamp:
Jun 8, 2006, 4:50:50 PM (19 years ago)
Author:
bensch
Message:

merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/script_engine/Makefile.am

    r8061 r8271  
    11MAINSRCDIR=../..
    22include $(MAINSRCDIR)/defs/include_paths.am
     3
     4
     5LIB_PREFIX=$(MAINSRCDIR)/lib
     6include $(MAINSRCDIR)/lib/BuildLibs.am
     7
     8
    39
    410INCLUDES= -I../../../extern_libs
     
    612noinst_LIBRARIES = libORXscript.a
    713
    8 libORXscript_a_SOURCES =
     14libORXscript_a_SOURCES = \
     15                script.cc\
     16                script_manager.cc\
     17                script_class.cc\
     18                account.cc \
     19                object.cc
     20
    921
    1022AM_CPPFLAGS= @LUA_INCLUDES@
    1123
    12 bin_PROGRAMS = account
    13 account_SOURCES = \
    14                 account.cc\
    15                 Script.cc
     24noinst_HEADERS = \
     25                lunar.h\
     26                script.h\
     27                script_manager.h\
     28                script_class.h
    1629
    1730
    1831
    19 account_LDADD = libORXscript.a -L../../../extern_libs @LUA_LIBS@
    2032
    21 #main_LDFLAGS =
     33check_PROGRAMS = example
    2234
    2335
    24 noinst_HEADERS = \
    25                 lunar.h\
    26                 Script.h
     36
     37
     38
     39
     40
     41example_DEPENDENCIES = \
     42                $(MAINSRCDIR)/world_entities/libORXwe.a \
     43                $(libORXlibs_a_LIBRARIES_) \
     44                $(MAINSRCDIR)/util/libORXutils.a
     45
     46example_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
     54example_SOURCES= \
     55                example.cc \
     56                \
     57                ../util/executor/executor_lua.cc
Note: See TracChangeset for help on using the changeset viewer.