Changeset 1853 in orxonox.OLD for orxonox/trunk
- Timestamp:
- May 1, 2004, 2:32:22 AM (21 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 17 added
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/core/Makefile
r1850 r1853 36 36 OBJECTS = \ 37 37 orxonox.o \ 38 data_tank.o 38 data_tank.o \ 39 npc.o \ 40 player.o \ 41 world.o 39 42 40 43 TARGET = orxonox 41 44 42 45 .SUFFIXES: 43 .SUFFIXES: .cc 46 .SUFFIXES: .cc .o 44 47 45 48 #.cc: $(LIB_DEP) … … 47 50 48 51 .cc.o: 49 $(CXX) -c $(CFLAGS) -I$(INCDIR) -o $@ $< 52 @ echo "$@ wird kompiliert..." 53 @ $(CXX) -c $(CFLAGS) -I$(INCDIR) -o $@ $< 50 54 51 55 … … 54 58 all: $(TARGET) 55 59 56 $(TARGET): $(LIB_DEP) $(OBJECTS) 57 $(CXX) $(LIBS) -o $(TARGET) $(OBJECTS) 60 $(TARGET): $(OBJECTS) 61 @ echo "orxonox wird gelinkt..." 62 @ $(CXX) $(LIBS) -o $(TARGET) $(OBJECTS) 58 63 59 64 … … 68 73 69 74 clean: 70 rm -rf *.o *~ $(PROGS)75 rm -rf *.o *~ 71 76 72 77 73 78 ####compile 74 79 75 orxonox.o: orxonox.cc \76 orxonox.h \ 80 #orxonox.o: orxonox.cc \ 81 # orxonox.h 77 82 78 data_tank.o: data_tank.cc \79 data_tank.h83 #data_tank.o: data_tank.cc \ 84 # data_tank.h 80 85 81 86 #EOF -
orxonox/trunk/core/orxonox.cc
r1850 r1853 27 27 /* class definition header */ 28 28 #include "orxonox.h" 29 #include "data_tank.h" 29 30 30 31 /* standard headers */ -
orxonox/trunk/doc/CREDITS
r1845 r1853 1 1 2 2 3 This is the thanks to File: 3 The Orxonox Team Thanks To 4 -------------------------- 4 5 5 The Orxonox team thanks to 6 amir@datacore.ch for giving us access to subversion and mailling lists 6 amir@datacore.ch for giving us access to subversion and mailing lists 7 Luke Grey for making the orxonox sound 7 8 8 bensch's brother for making the orxonox sound!9 9 -
orxonox/trunk/doc/program_examples/openGL/cube.c
r1803 r1853 5 5 #include <stdio.h> 6 6 #include <stdlib.h> 7 7 #include <math.h> 8 8 9 9 static float alpha = 0;
Note: See TracChangeset
for help on using the changeset viewer.