Clone of mesa.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Makefile for programs from the OpenGL Programming Guide
  2. ##### MACROS #####
  3. TOP = ../..
  4. INCDIR = $(TOP)/include
  5. LIBDIR = $(TOP)/lib
  6. LIBS = -L$(LIBDIR) $(APP_LIB_DEPS)
  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 quadric robot sccolorlight \
  13. scene scenebamb sceneflat select smooth stencil stroke surface \
  14. teaambient teapots tess tesswind texbind texgen texprox texsub \
  15. texturesurf torus trim unproject varray wrap
  16. ##### RULES #####
  17. .SUFFIXES:
  18. .SUFFIXES: .c
  19. .c: $(LIB_DEP)
  20. $(CC) -I$(INCDIR) $(CFLAGS) $< $(LIBS) -o $@
  21. ##### TARGETS ######
  22. default:
  23. @echo "Specify a target configuration"
  24. clean:
  25. -rm -f *.o *~
  26. realclean:
  27. -rm -f $(PROGS)
  28. -rm -f *.o *~
  29. targets: $(PROGS)
  30. include $(TOP)/Make-config