home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / swirl / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  419 b   |  25 lines

  1. #!smake
  2. #
  3. # Makefile for 4Dgifts/toolbox/src/exampleCode/swirl header file installation.
  4. #
  5. include ${ROOT}/usr/include/make/commondefs
  6.  
  7.  
  8. TARGETS    = swirl artshow
  9.  
  10. LCOPTS  = -xansi -D__STDC__ -O -float
  11. LCINCS  = -I/usr/include/gl
  12. LLDLIBS    = -lgutil -limage -lgl -lm
  13. CVERSION=
  14.  
  15. all default: $(TARGETS)
  16.  
  17.  
  18. include ${COMMONRULES}
  19.  
  20. artshow: 
  21.     $(CCF) artshow.c -o artshow $(LDFLAGS)
  22.  
  23. swirl: 
  24.     $(CCF) swirl.c -o swirl $(LDFLAGS)
  25.