Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1853 in orxonox.OLD for orxonox


Ignore:
Timestamp:
May 1, 2004, 2:32:22 AM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: added working configure, Makefile and extended core-system

Location:
orxonox/trunk
Files:
17 added
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/core/Makefile

    r1850 r1853  
    3636OBJECTS = \
    3737        orxonox.o \
    38         data_tank.o
     38        data_tank.o \
     39        npc.o \
     40        player.o \
     41        world.o
    3942
    4043TARGET = orxonox
    4144
    4245.SUFFIXES:
    43 .SUFFIXES: .cc
     46.SUFFIXES: .cc .o
    4447
    4548#.cc: $(LIB_DEP)
     
    4750
    4851.cc.o:
    49         $(CXX) -c $(CFLAGS) -I$(INCDIR) -o $@ $<
     52        @ echo "$@ wird kompiliert..."
     53        @ $(CXX) -c $(CFLAGS) -I$(INCDIR) -o $@ $<
    5054
    5155
     
    5458all: $(TARGET)
    5559
    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)
    5863
    5964
     
    6873       
    6974clean:
    70         rm -rf *.o *~ $(PROGS)
     75        rm -rf *.o *~
    7176
    7277
    7378####compile
    7479
    75 orxonox.o: orxonox.cc \
    76                 orxonox.h \
     80#orxonox.o: orxonox.cc \
     81#               orxonox.h
    7782
    78 data_tank.o: data_tank.cc \
    79                 data_tank.h     
     83#data_tank.o: data_tank.cc \
     84#               data_tank.h     
    8085       
    8186#EOF
  • orxonox/trunk/core/orxonox.cc

    r1850 r1853  
    2727/* class definition header */
    2828#include "orxonox.h"
     29#include "data_tank.h"
    2930
    3031/* standard headers */
  • orxonox/trunk/doc/CREDITS

    r1845 r1853  
    11
    22
    3 This is the thanks to File:
     3The Orxonox Team Thanks To
     4--------------------------
    45
    5 The Orxonox team thanks to
    6 amir@datacore.ch  for giving us access to subversion and mailling lists
     6amir@datacore.ch        for giving us access to subversion and mailing lists
     7Luke Grey               for making the orxonox sound
    78
    8 bensch's brother for making the orxonox sound!
    99
  • orxonox/trunk/doc/program_examples/openGL/cube.c

    r1803 r1853  
    55#include <stdio.h>
    66#include <stdlib.h>
    7 
     7#include <math.h>
    88
    99static float alpha = 0;
Note: See TracChangeset for help on using the changeset viewer.