home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / opengl / siggraphCD / lib / libtk / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  377 b   |  21 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. LCDEFS = -DUNIX -D_GL_X -Dmips -D_GL_DOUBLE -D__STDC__=1 -U__EXTENSIONS__
  6. LCINCS = -I.
  7. LLDLIBS = -lXext -lX11 -lm -lmalloc -lfpe
  8.  
  9. TARGETS = libtk.a
  10.  
  11. CFILES = cursor.c event.c font.c getset.c image.c shapes.c window.c
  12.  
  13. all default: $(TARGETS)
  14.  
  15. include $(COMMONRULES)
  16.  
  17. libtk.a: $(OBJECTS)
  18.     rm -f $@
  19.     $(AR) crl $@ $(OBJECTS)
  20.  
  21.