Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4263 in orxonox.OLD for orxonox/trunk/src/subprojects


Ignore:
Timestamp:
May 22, 2005, 7:28:47 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: building subprojects externaly

Location:
orxonox/trunk/src/subprojects
Files:
2 added
3 edited
2 copied
4 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/subprojects/Makefile.am

    r3549 r4263  
    1 SUBDIRS = testmain
     1SUBDIRS = importer \
     2          testmain
  • orxonox/trunk/src/subprojects/Makefile.in

    r4261 r4263  
    164164target_os = @target_os@
    165165target_vendor = @target_vendor@
    166 SUBDIRS = testmain
     166SUBDIRS = importer \
     167          testmain
     168
    167169all: all-recursive
    168170
     
    177179          esac; \
    178180        done; \
    179         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/Makefile'; \
     181        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/Makefile'; \
    180182        cd $(top_srcdir) && \
    181           $(AUTOMAKE) --gnu  src/subprojects/Makefile
     183          $(AUTOMAKE) --foreign  src/subprojects/Makefile
    182184.PRECIOUS: Makefile
    183185Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/trunk/src/subprojects/gui/Makefile.am

    r4262 r4263  
    2222
    2323
    24 bin_PROGRAMS=testmain
    25 testmain_SOURCES= testmain.cc
     24bin_PROGRAMS = gui
     25gui_SOURCES= gui
    2626
    2727noinst_HEADERS=
  • orxonox/trunk/src/subprojects/importer/Makefile.am

    r4262 r4263  
    44AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities
    55AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib
     6AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord
    67AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data
    7 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gaphics
     8AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics
    89AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer
     10AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/particles
     11AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui
     12AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gui
    913AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang
    1014AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util
    1115AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math
     16AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/tinyxml
    1217AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs
    1318AM_CXXFLAGS+=-I$(MAINSRCDIR)/font
     
    1520AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu
    1621AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai
     22AM_CXXFLAGS+=-I$(MAINSRCDIR)/util
     23AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/animation
     24AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/common
     25AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/loading
     26AM_CXXFLAGS+=-I$(MAINSRCDIR)/util/track
     27AM_CXXFLAGS+=-I$(MAINSRCDIR)/subprojects
    1728
    1829
     
    2031
    2132#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
     33bin_PROGRAMS=importer
    2234
     35importer_SOURCES= framework.cc \
     36                  windowHandler.cc \
     37                  $(MAINSRCDIR)/lib/graphics/importer/model.cc \
     38                  $(MAINSRCDIR)/lib/graphics/importer/objModel.cc \
     39                  $(MAINSRCDIR)/lib/graphics/importer/primitive_model.cc \
     40                  $(MAINSRCDIR)/lib/graphics/importer/array.cc \
     41                  $(MAINSRCDIR)/lib/graphics/importer/material.cc \
     42                  $(MAINSRCDIR)/lib/graphics/importer/texture.cc \
     43                  $(MAINSRCDIR)/lib/graphics/graphics_engine.cc \
     44                  $(MAINSRCDIR)/lib/lang/base_object.cc \
     45                  $(MAINSRCDIR)/lib/math/vector.cc \
     46                  $(MAINSRCDIR)/util/resource_manager.cc \
     47                  $(MAINSRCDIR)/lib/graphics/text_engine.cc \
     48                  $(MAINSRCDIR)/lib/coord/p_node.cc \
     49                  $(MAINSRCDIR)/lib/coord/null_parent.cc
    2350
    24 bin_PROGRAMS=testmain
    25 testmain_SOURCES= testmain.cc
    26 
    27 noinst_HEADERS=
     51noinst_HEADERS = framework.h \
     52                 windowHandler.h
  • orxonox/trunk/src/subprojects/testmain/Makefile.in

    r4261 r4263  
    197197          esac; \
    198198        done; \
    199         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/testmain/Makefile'; \
     199        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/testmain/Makefile'; \
    200200        cd $(top_srcdir) && \
    201           $(AUTOMAKE) --gnu  src/subprojects/testmain/Makefile
     201          $(AUTOMAKE) --foreign  src/subprojects/testmain/Makefile
    202202.PRECIOUS: Makefile
    203203Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset for help on using the changeset viewer.