home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 5 / MA_Cover_5.iso / ppc / mesa / widgets-sgi / makefile < prev    next >
Encoding:
Makefile  |  1998-01-31  |  895 b   |  59 lines

  1. # Makefile for OpenGL widgets
  2.  
  3. # NOTE: widget code is from SGI.  See any of the .c or .h files for the
  4. # complete copyright.  Mesa's GNU copyright DOES NOT apply to this widget
  5. # code.
  6.  
  7.  
  8. ##### MACROS #####
  9.  
  10. VPATH = RCS
  11.  
  12. INCDIRS = -I../include -I/usr/include/Motif1.2
  13. LIBDIR = ../lib
  14.  
  15. SOURCES = GLwDrawA.c GLwMDrawA.c
  16.  
  17.  
  18. OBJECTS = $(SOURCES:.c=.o)
  19.  
  20.  
  21.  
  22. ##### RULES #####
  23.  
  24. .c.o:
  25.     $(CC) -c $(INCDIRS) $(CFLAGS) $<
  26.  
  27.  
  28.  
  29. ##### TARGETS #####
  30.  
  31. default:
  32.     @echo "Specify a target configuration"
  33.  
  34. clean:
  35.     -rm *.o *~
  36.  
  37. GLW_LIB = libGLw.a
  38.  
  39. targets: $(LIBDIR)/$(GLW_LIB)
  40.  
  41.  
  42. # Make the library
  43. $(LIBDIR)/$(GLW_LIB): $(OBJECTS)
  44.     $(MAKELIB) $(GLW_LIB) $(MAJOR) $(MINOR) $(OBJECTS)
  45.     mv $(GLW_LIB)* $(LIBDIR)
  46.  
  47. include ../Make-config
  48.  
  49. include depend
  50.  
  51.  
  52.  
  53. #
  54. # Run 'make depend' to update the dependencies if you change what's included
  55. # by any source file.
  56. dep: $(SOURCES)
  57.     makedepend -fdepend -Y -I../include $(SOURCES)
  58.