Changeset 1853 in orxonox.OLD for orxonox/trunk/core
- Timestamp:
- May 1, 2004, 2:32:22 AM (21 years ago)
- Location:
- orxonox/trunk/core
- Files:
-
- 8 added
- 1 deleted
- 2 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 */
Note: See TracChangeset
for help on using the changeset viewer.