Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 997B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # progs/redbook/Makefile
  2. TOP = ../..
  3. include $(TOP)/configs/current
  4. INCDIR = $(TOP)/include
  5. LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME)
  6. LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS)
  7. PROGS = aaindex aapoly aargb accanti accpersp alpha alpha3D anti \
  8. bezcurve bezmesh checker clip colormat cube depthcue dof \
  9. double drawf feedback fog fogindex font hello image light \
  10. lines list material mipmap model movelight nurbs pickdepth \
  11. picksquare plane planet polyoff polys quadric robot sccolorlight \
  12. scene scenebamb sceneflat select smooth stencil stroke surface \
  13. teaambient teapots tess tesswind texbind texgen texprox texsub \
  14. texturesurf torus trim unproject varray wrap
  15. ##### RULES #####
  16. .SUFFIXES:
  17. .SUFFIXES: .c
  18. .c: $(LIB_DEP)
  19. $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) $< $(LIBS) -o $@
  20. ##### TARGETS ######
  21. default: $(PROGS)
  22. clean:
  23. -rm -f $(PROGS)
  24. -rm -f *.o *~