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.5KB

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