Clone of mesa.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Makefile.BeOS-R4 1.2KB

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