home *** CD-ROM | disk | FTP | other *** search
/ Launch & Play / spustahrej2.iso / Egoboo / code / Makefile < prev    next >
Encoding:
Makefile  |  2001-12-03  |  1.8 KB  |  50 lines

  1. OBJECTS=camera.o char.o enchant.o game.o graphic.o input.o menu.o module.o network.o particle.o passage.o script.o sound.o lin-file.o gltexture.o mathstuff.o graphicfan.o graphicmad.o graphicprt.o configfile.c
  2. FLAGS=-D_LINUX -ffast-math -funroll-loops -O3 -g
  3. LIBS=`sdl-config --libs` -lGL -lGLU
  4. INCDIR=`sdl-config --cflags` -I/usr/X11/include
  5. LIBDIR=-L/usr/X11R6/lib -L/usr/lib
  6. CC=gcc
  7.  
  8. egoboo: $(OBJECTS)
  9.     $(CC) $(OBJECTS) $(FLAGS) $(INCDIR) $(LIBDIR) $(LIBS) -o egoboo
  10. graphicmad.o: graphicmad.c egoboo.h
  11.     $(CC) graphicmad.c $(FLAGS) $(INCDIR) -c 
  12. graphicprt.o: graphicprt.c egoboo.h
  13.     $(CC) graphicprt.c $(FLAGS) $(INCDIR) -c 
  14. graphicfan.o: graphicfan.c egoboo.h
  15.     $(CC) graphicfan.c $(FLAGS) $(INCDIR) -c 
  16. camera.o: camera.c egoboo.h
  17.     $(CC) camera.c $(FLAGS) $(INCDIR) -c 
  18. char.o: char.c egoboo.h
  19.     $(CC) char.c $(FLAGS) $(INCDIR) -c 
  20. enchant.o: enchant.c egoboo.h
  21.     $(CC) enchant.c $(FLAGS) $(INCDIR) -c 
  22. game.o: game.c egoboo.h
  23.     $(CC) game.c $(FLAGS) $(INCDIR) -c 
  24. graphic.o: graphic.c egoboo.h
  25.     $(CC) graphic.c $(FLAGS) $(INCDIR) -c 
  26. input.o: input.c egoboo.h
  27.     $(CC) input.c $(FLAGS) $(INCDIR) -c 
  28. mathstuff.o: mathstuff.c egoboo.h
  29.     $(CC) mathstuff.c $(FLAGS) $(INCDIR) -c 
  30. menu.o: menu.c egoboo.h
  31.     $(CC) menu.c $(FLAGS) $(INCDIR) -c 
  32. module.o: module.c egoboo.h
  33.     $(CC) module.c $(FLAGS) $(INCDIR) -c 
  34. network.o: network.c egoboo.h
  35.     $(CC) network.c $(FLAGS) $(INCDIR) -c 
  36. particle.o: particle.c egoboo.h
  37.     $(CC) particle.c $(FLAGS) $(INCDIR) -c 
  38. passage.o: passage.c egoboo.h
  39.     $(CC) passage.c $(FLAGS) $(INCDIR) -c 
  40. script.o: script.c egoboo.h
  41.     $(CC) script.c $(FLAGS) $(INCDIR) -c 
  42. sound.o: sound.c egoboo.h
  43.     $(CC) sound.c $(FLAGS) $(INCDIR) -c 
  44. lin-file.o: lin-file.c egoboo.h
  45.     $(CC) lin-file.c $(FLAGS) $(INCDIR) -c 
  46. gltexture.o: gltexture.c egoboo.h
  47.     $(CC) gltexture.c $(FLAGS) $(INCDIR) -c 
  48. clean:
  49.     rm -f egoboo; rm -f *.o
  50.