Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3383 in orxonox.OLD


Ignore:
Timestamp:
Jan 26, 2005, 12:32:47 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/nico: added makefile for the heightmap
I liked it much more if you moved this into importer, and build it there, but for the time being this is ok

Location:
orxonox/branches/nico
Files:
1 added
7 edited
1 moved

Legend:

Unmodified
Added
Removed
  • orxonox/branches/nico/configure

    r3238 r3383  
    75477547
    75487548
    7549                                                   ac_config_files="$ac_config_files Makefile src/console/Makefile src/gui/Makefile src/Makefile src/importer/Makefile"
     7549                                                            ac_config_files="$ac_config_files Makefile src/console/Makefile src/gui/Makefile src/Makefile src/importer/Makefile src/heightmap/Makefile"
    75507550
    75517551cat >confcache <<\_ACEOF
     
    81248124  "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
    81258125  "src/importer/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/importer/Makefile" ;;
     8126  "src/heightmap/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/heightmap/Makefile" ;;
    81268127  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
    81278128  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
  • orxonox/branches/nico/configure.ac

    r3238 r3383  
    367367                 src/gui/Makefile
    368368                 src/Makefile
    369                  src/importer/Makefile])
     369                 src/importer/Makefile
     370                 src/heightmap/Makefile])
    370371AC_OUTPUT
  • orxonox/branches/nico/src/Makefile.am

    r3238 r3383  
    7474SUBDIRS = . \
    7575          importer \
     76          heightmap \
    7677          gui \
    7778          $(GTK_PROGS)
  • orxonox/branches/nico/src/Makefile.in

    r3238 r3383  
    9595ETAGS = etags
    9696CTAGS = ctags
    97 DIST_SUBDIRS = . importer gui console
     97DIST_SUBDIRS = . importer heightmap gui console
    9898DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
    9999ACLOCAL = @ACLOCAL@
     
    258258SUBDIRS = . \
    259259          importer \
     260          heightmap \
    260261          gui \
    261262          $(GTK_PROGS)
     
    274275          esac; \
    275276        done; \
    276         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/Makefile'; \
     277        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
    277278        cd $(top_srcdir) && \
    278           $(AUTOMAKE) --foreign  src/Makefile
     279          $(AUTOMAKE) --gnu  src/Makefile
    279280.PRECIOUS: Makefile
    280281Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/branches/nico/src/console/Makefile.in

    r3238 r3383  
    193193          esac; \
    194194        done; \
    195         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/console/Makefile'; \
     195        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/console/Makefile'; \
    196196        cd $(top_srcdir) && \
    197           $(AUTOMAKE) --foreign  src/console/Makefile
     197          $(AUTOMAKE) --gnu  src/console/Makefile
    198198.PRECIOUS: Makefile
    199199Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/branches/nico/src/gui/Makefile.in

    r3238 r3383  
    220220          esac; \
    221221        done; \
    222         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/gui/Makefile'; \
     222        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/gui/Makefile'; \
    223223        cd $(top_srcdir) && \
    224           $(AUTOMAKE) --foreign  src/gui/Makefile
     224          $(AUTOMAKE) --gnu  src/gui/Makefile
    225225.PRECIOUS: Makefile
    226226Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/branches/nico/src/importer/Makefile.in

    r3238 r3383  
    200200          esac; \
    201201        done; \
    202         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/importer/Makefile'; \
     202        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/importer/Makefile'; \
    203203        cd $(top_srcdir) && \
    204           $(AUTOMAKE) --foreign  src/importer/Makefile
     204          $(AUTOMAKE) --gnu  src/importer/Makefile
    205205.PRECIOUS: Makefile
    206206Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset for help on using the changeset viewer.