- Timestamp:
- Mar 30, 2005, 8:21:10 PM (20 years ago)
- Location:
- orxonox/branches/shadows/src
- Files:
-
- 5 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/shadows/src/Makefile.am
r3396 r3680 37 37 matrix.cc \ 38 38 curve.cc \ 39 glmenu_imagescreen.cc 39 glmenu_imagescreen.cc\ 40 shadow.cc 40 41 41 42 … … 80 81 glmenu_imagescreen.h \ 81 82 debug.h 83 debug.h \ 84 shadow.h 82 85 83 86 -
orxonox/branches/shadows/src/Makefile.in
r3396 r3680 64 64 base_object.$(OBJEXT) helper_parent.$(OBJEXT) \ 65 65 track_manager.$(OBJEXT) matrix.$(OBJEXT) curve.$(OBJEXT) \ 66 glmenu_imagescreen.$(OBJEXT) 66 glmenu_imagescreen.$(OBJEXT) shadow.$(OBJEXT) 67 67 orxonox_OBJECTS = $(am_orxonox_OBJECTS) 68 68 orxonox_LDADD = $(LDADD) … … 85 85 @AMDEP_TRUE@ ./$(DEPDIR)/null_parent.Po ./$(DEPDIR)/objModel.Po \ 86 86 @AMDEP_TRUE@ ./$(DEPDIR)/orxonox.Po ./$(DEPDIR)/p_node.Po \ 87 @AMDEP_TRUE@ ./$(DEPDIR)/player.Po ./$(DEPDIR)/story_entity.Po \ 88 @AMDEP_TRUE@ ./$(DEPDIR)/texture.Po ./$(DEPDIR)/track.Po \ 89 @AMDEP_TRUE@ ./$(DEPDIR)/track_manager.Po ./$(DEPDIR)/vector.Po \ 90 @AMDEP_TRUE@ ./$(DEPDIR)/world.Po ./$(DEPDIR)/world_entity.Po 87 @AMDEP_TRUE@ ./$(DEPDIR)/player.Po ./$(DEPDIR)/shadow.Po \ 88 @AMDEP_TRUE@ ./$(DEPDIR)/story_entity.Po ./$(DEPDIR)/texture.Po \ 89 @AMDEP_TRUE@ ./$(DEPDIR)/track.Po ./$(DEPDIR)/track_manager.Po \ 90 @AMDEP_TRUE@ ./$(DEPDIR)/vector.Po ./$(DEPDIR)/world.Po \ 91 @AMDEP_TRUE@ ./$(DEPDIR)/world_entity.Po 91 92 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 92 93 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) … … 238 239 matrix.cc \ 239 240 curve.cc \ 240 glmenu_imagescreen.cc 241 glmenu_imagescreen.cc\ 242 shadow.cc 241 243 242 244 noinst_HEADERS = ability.h \ … … 307 309 esac; \ 308 310 done; \ 309 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/Makefile'; \311 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ 310 312 cd $(top_srcdir) && \ 311 $(AUTOMAKE) -- foreignsrc/Makefile313 $(AUTOMAKE) --gnu src/Makefile 312 314 .PRECIOUS: Makefile 313 315 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 384 386 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/p_node.Po@am__quote@ 385 387 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/player.Po@am__quote@ 388 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shadow.Po@am__quote@ 386 389 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/story_entity.Po@am__quote@ 387 390 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/texture.Po@am__quote@ … … 746 749 uninstall-binPROGRAMS uninstall-info-am 747 750 751 debug.h \ 752 shadow.h 748 753 749 754 # uncomment the following if orxonox requires the math library -
orxonox/branches/shadows/src/console/Makefile.in
r3377 r3680 195 195 esac; \ 196 196 done; \ 197 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/console/Makefile'; \197 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/console/Makefile'; \ 198 198 cd $(top_srcdir) && \ 199 $(AUTOMAKE) -- foreignsrc/console/Makefile199 $(AUTOMAKE) --gnu src/console/Makefile 200 200 .PRECIOUS: Makefile 201 201 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/shadows/src/gui/Makefile.in
r3377 r3680 222 222 esac; \ 223 223 done; \ 224 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/gui/Makefile'; \224 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/gui/Makefile'; \ 225 225 cd $(top_srcdir) && \ 226 $(AUTOMAKE) -- foreignsrc/gui/Makefile226 $(AUTOMAKE) --gnu src/gui/Makefile 227 227 .PRECIOUS: Makefile 228 228 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/shadows/src/importer/Makefile.in
r3396 r3680 207 207 esac; \ 208 208 done; \ 209 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/importer/Makefile'; \209 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/importer/Makefile'; \ 210 210 cd $(top_srcdir) && \ 211 $(AUTOMAKE) -- foreignsrc/importer/Makefile211 $(AUTOMAKE) --gnu src/importer/Makefile 212 212 .PRECIOUS: Makefile 213 213 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/branches/shadows/src/shadow.cc
r3679 r3680 142 142 det-= m[8]*m[5]*m[2]; 143 143 det-= m[4]*m[1]*m[10]; 144 det-= m[0]*m[9]*[6]; 145 146 144 det-= m[0]*m[9]*m[6]; 147 145 } 148 146
Note: See TracChangeset
for help on using the changeset viewer.