Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile.BeOS-R4 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # $Id: Makefile.BeOS-R4,v 1.2 1999/09/17 00:08:31 brianp Exp $
  2. # Makefile for OpenGL Programming Guide programs for BeOS R4
  3. # This file is in the public domain.
  4. # $Log: Makefile.BeOS-R4,v $
  5. # Revision 1.2 1999/09/17 00:08:31 brianp
  6. # link with -lGLU -lGL instead of -lMesaGLU -lMesaGL
  7. #
  8. # Revision 1.1.1.1 1999/08/19 00:55:40 jtg
  9. # Imported sources
  10. #
  11. # Revision 1.1 1999/02/25 02:13:06 brianp
  12. # initial check-in
  13. #
  14. ##### MACROS #####
  15. INCDIR = ../include
  16. LIBDIR = ../lib
  17. GL_LIBS = -L$(LIBDIR) -L/boot/home/config/lib -Xlinker -rpath $(LIBDIR) -lbe -lglut -lGLU -lGL $(XLIBS)
  18. LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
  19. PROGS = aaindex aapoly aargb accanti accpersp alpha alpha3D anti \
  20. bezcurve bezmesh checker clip colormat cube depthcue dof \
  21. double drawf feedback fog fogindex font hello image light \
  22. lines list material mipmap model movelight nurbs pickdepth \
  23. picksquare plane planet polyoff polys robot sccolorlight \
  24. scene scenebamb sceneflat select smooth stencil stroke surface \
  25. teaambient teapots tess tesswind texbind texgen texprox texsub \
  26. texturesurf torus unproject varray wrap
  27. ##### RULES #####
  28. .SUFFIXES:
  29. .SUFFIXES: .c
  30. .c: $(LIB_DEP)
  31. $(CC) -I$(INCDIR) $(CFLAGS) $< $(GL_LIBS) -o $@
  32. ##### TARGETS #####
  33. default:
  34. @echo "Specify a target configuration"
  35. clean:
  36. -rm *.o *~
  37. realclean:
  38. -rm $(PROGS)
  39. -rm *.o *~
  40. targets: $(PROGS)
  41. # execute all programs
  42. exec: $(PROGS)
  43. @for prog in $(PROGS) ; \
  44. do \
  45. echo -n "Running $$prog ..." ; \
  46. $$prog ; \
  47. echo ; \
  48. done
  49. include ../Make-config