home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 5 / MA_Cover_5.iso / ppc / mesa / src / makefile.next < prev    next >
Encoding:
Makefile  |  1998-01-31  |  2.4 KB  |  95 lines

  1. # Makefile for core library for NeXT contributed by Pascal Thibaudeau
  2. # (pthibaud@frbdx11.cribx1.u-bordeaux.fr)
  3.  
  4. # Mesa 3-D graphics library
  5. # Version:  2.5
  6. # Copyright (C) 1995-1997  Brian Paul
  7. #
  8. # This library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Library General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2 of the License, or (at your option) any later version.
  12. #
  13. # This library is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. # Library General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Library General Public
  19. # License along with this library; if not, write to the Free
  20. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. # $Id: Makefile.NeXT,v 1.3 1997/10/22 00:23:11 brianp Exp $
  24.  
  25. # $Log: Makefile.NeXT,v $
  26. # Revision 1.3  1997/10/22 00:23:11  brianp
  27. # now make lib with major and minor version numbers
  28. #
  29. # Revision 1.2  1997/08/22 01:43:47  brianp
  30. # added api[12].c and hash.c
  31. #
  32. # Revision 1.1  1997/05/09 02:44:10  brianp
  33. # Initial revision
  34. #
  35.  
  36.  
  37.  
  38. ##### MACROS #####
  39.  
  40. VPATH = RCS
  41.  
  42. INCDIR = ../include
  43. LIBDIR = ../lib
  44.  
  45. CORE_SOURCES = accum.c alpha.c alphabuf.c api1.c api2.c attrib.c bitmap.c \
  46.     blend.c clip.c context.c copypix.c depth.c \
  47.     dlist.c drawpix.c enable.c eval.c feedback.c fog.c \
  48.     get.c hash.c image.c light.c lines.c logic.c masking.c matrix.c \
  49.     misc.c mmath.c pb.c pixel.c points.c pointers.c polygon.c \
  50.     quads.c rastpos.c readpix.c rect.c scissor.c shade.c span.c \
  51.     stencil.c teximage.c texobj.c texstate.c texture.c triangle.c \
  52.     varray.c winpos.c vb.c vbfill.c vbrender.c vbxform.c xform.c
  53.  
  54. DRIVER_SOURCES = osmesa.c
  55.  
  56.  
  57. OBJECTS = $(CORE_SOURCES:.c=.o) $(DRIVER_SOURCES:.c=.o)
  58.  
  59.  
  60.  
  61. ##### RULES #####
  62.  
  63. .c.o:
  64.     $(CC) -c -I$(INCDIR) $(CFLAGS) $<
  65.  
  66.  
  67. ##### TARGETS #####
  68.  
  69. default:
  70.     @echo "Specify a target configuration"
  71.  
  72. clean:
  73.     -rm *.o *~
  74.  
  75. targets: $(LIBDIR)/$(GL_LIB)
  76.  
  77. # Make the library
  78. $(LIBDIR)/$(GL_LIB): $(OBJECTS)
  79.     $(MAKELIB) $(GL_LIB) $(MAJOR) $(MINOR) $(OBJECTS)
  80.     mv $(GL_LIB)* $(LIBDIR)
  81.  
  82. include ../Make-config
  83.  
  84. include depend
  85.  
  86.  
  87.  
  88. #
  89. # Run 'make depend' to update the dependencies if you change what's included
  90. # by any source file.
  91. #
  92. dep: $(CORE_SOURCES) $(DRIVER_SOURCES)
  93.     makedepend -fdepend -Y -I../include $(SOURCES)
  94.  
  95.