home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / mesa-1.2.8 / book / makefile < prev    next >
Makefile  |  1996-05-27  |  1KB  |  70 lines

  1. # Makefile for book programs
  2.  
  3.  
  4. # $Id: Makefile,v 1.4 1995/08/01 20:59:05 brianp Exp $
  5.  
  6. # $Log: Makefile,v $
  7. # Revision 1.4  1995/08/01  20:59:05  brianp
  8. # cleaned up, use $(xx_LIB) variable
  9. #
  10. # Revision 1.3  1995/03/13  16:04:47  brianp
  11. # added xfont to PROGS
  12. #
  13. # Revision 1.2  1995/03/04  19:43:29  brianp
  14. # updated for Make-config
  15. #
  16. # Revision 1.1  1995/03/03  14:38:09  brianp
  17. # Initial revision
  18. #
  19.  
  20.  
  21. ##### MACROS #####
  22.  
  23. INCDIR = ../include
  24.  
  25. GL_LIBS = -L../lib -lMesaaux -lMesatk -lMesaGLU -lMesaGL -lm $(XLIBS)
  26.  
  27. LIB_DEP = ../lib/$(GL_LIB) ../lib/$(GLU_LIB) ../lib/$(TK_LIB) ../lib/$(AUX_LIB)
  28.  
  29. PROGS = robot accanti accnot accpersp accum aim alpha alpha3D \
  30.     anti antiindex antipindex antipoint antipoly \
  31.     bezcurve bezmesh bezsurf checker checker2 \
  32.     chess clip colormat cone cube curve \
  33.     depthcue disk dof dofnot double drawf \
  34.     feedback fog fogindex font light linelist \
  35.     lines list list2 maplight material mipmap \
  36.     model movelight nurbs pickdepth pickline \
  37.     picksquare plane planet planetup polys \
  38.     robot sccolorlight scene scenebamb sceneflat \
  39.     select simple smooth sphere stencil stroke \
  40.     surface tea teaambient teapots texgen texturesurf xfont
  41.  
  42.  
  43.  
  44. ##### RULES #####
  45.  
  46. .SUFFIXES:
  47. .SUFFIXES: .c
  48.  
  49. .c: $(LIB_DEP)
  50.     $(CC) -I$(INCDIR) $(CFLAGS) $< $(GL_LIBS) -o $@
  51.  
  52.  
  53.  
  54. ##### TARGETS ######
  55.  
  56. default:
  57.     @echo "Specify a target configuration"
  58.  
  59. clean:
  60.     -rm *.o *~
  61.  
  62. realclean:
  63.     -rm $(PROGS)
  64.     -rm *.o *~
  65.  
  66. targets: $(PROGS)
  67.  
  68. include ../Make-config
  69.  
  70.