Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3705 in orxonox.OLD


Ignore:
Timestamp:
Mar 31, 2005, 11:15:02 PM (19 years ago)
Author:
dave
Message:

branches/dave: hab den Himmerl schnell Heller gemacht, kam per Zufall auf die Idee

Location:
orxonox/branches/dave/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/dave/src/Makefile.in

    r3673 r3705  
    1 # Makefile.in generated by automake 1.8.3 from Makefile.am.
     1# Makefile.in generated by automake 1.8.5 from Makefile.am.
    22# @configure_input@
    33
     
    551551        tags=; \
    552552        here=`pwd`; \
    553         if (etags --etags-include --version) >/dev/null 2>&1; then \
     553        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
    554554          include_option=--etags-include; \
     555          empty_fix=.; \
    555556        else \
    556557          include_option=--include; \
     558          empty_fix=; \
    557559        fi; \
    558560        list='$(SUBDIRS)'; for subdir in $$list; do \
    559561          if test "$$subdir" = .; then :; else \
    560             test -f $$subdir/TAGS && \
     562            test ! -f $$subdir/TAGS || \
    561563              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
    562564          fi; \
     
    568570          $(AWK) '    { files[$$0] = 1; } \
    569571               END { for (i in files) print i; }'`; \
    570         test -z "$(ETAGS_ARGS)$$tags$$unique" \
    571           || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
    572              $$tags $$unique
     572        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
     573          test -n "$$unique" || unique=$$empty_fix; \
     574          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
     575            $$tags $$unique; \
     576        fi
    573577ctags: CTAGS
    574578CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  • orxonox/branches/dave/src/console/Makefile.in

    r3401 r3705  
    1 # Makefile.in generated by automake 1.8.3 from Makefile.am.
     1# Makefile.in generated by automake 1.8.5 from Makefile.am.
    22# @configure_input@
    33
     
    289289          $(AWK) '    { files[$$0] = 1; } \
    290290               END { for (i in files) print i; }'`; \
    291         test -z "$(ETAGS_ARGS)$$tags$$unique" \
    292           || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
    293              $$tags $$unique
     291        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
     292          test -n "$$unique" || unique=$$empty_fix; \
     293          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
     294            $$tags $$unique; \
     295        fi
    294296ctags: CTAGS
    295297CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  • orxonox/branches/dave/src/gui/Makefile.in

    r3401 r3705  
    1 # Makefile.in generated by automake 1.8.3 from Makefile.am.
     1# Makefile.in generated by automake 1.8.5 from Makefile.am.
    22# @configure_input@
    33
     
    321321          $(AWK) '    { files[$$0] = 1; } \
    322322               END { for (i in files) print i; }'`; \
    323         test -z "$(ETAGS_ARGS)$$tags$$unique" \
    324           || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
    325              $$tags $$unique
     323        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
     324          test -n "$$unique" || unique=$$empty_fix; \
     325          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
     326            $$tags $$unique; \
     327        fi
    326328ctags: CTAGS
    327329CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  • orxonox/branches/dave/src/importer/Makefile.in

    r3401 r3705  
    1 # Makefile.in generated by automake 1.8.3 from Makefile.am.
     1# Makefile.in generated by automake 1.8.5 from Makefile.am.
    22# @configure_input@
    33
     
    303303          $(AWK) '    { files[$$0] = 1; } \
    304304               END { for (i in files) print i; }'`; \
    305         test -z "$(ETAGS_ARGS)$$tags$$unique" \
    306           || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
    307              $$tags $$unique
     305        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
     306          test -n "$$unique" || unique=$$empty_fix; \
     307          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
     308            $$tags $$unique; \
     309        fi
    308310ctags: CTAGS
    309311CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  • orxonox/branches/dave/src/shadow.cc

    r3679 r3705  
    142142    det-= m[8]*m[5]*m[2];
    143143    det-= m[4]*m[1]*m[10];
    144     det-= m[0]*m[9]*[6];
     144    det-= m[0]*m[9]*m[6];
    145145   
    146146   
  • orxonox/branches/dave/src/skysphere.cc

    r3416 r3705  
    8181void Skysphere::draw()
    8282{
     83    glEnable(GL_COLOR_MATERIAL);
    8384    sky->select();
    8485    glPushMatrix();
     
    9192    gluSphere(sphereObj,200.0f,20,20);
    9293    glPopMatrix();
     94    glDisable(GL_COLOR_MATERIAL);
    9395
    9496
Note: See TracChangeset for help on using the changeset viewer.