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

  1. SHELL    = /bin/sh
  2.  
  3. LIBVK =  /usr/lib/libvk.a
  4.  
  5. all:
  6.     if [ ! -r ${LIBVK} ]  ;   then \
  7.         echo ========== ; \
  8.         echo \ \ \ \ \ \  /usr/lib/libvk.a library not installed ; \
  9.         echo \ \ \ \ \ \  --cannot compile toolbox/src/exampleCode/viewkit dirs; \
  10.         echo \ \ \ \ \ \  get/load the \"ViewKit _eoe & _dev\" software options . . . ; \
  11.         echo ========== ; \
  12.     else     \
  13.         (cd VCal ; $(MAKE) ); \
  14.         (cd builderExamples ; $(MAKE) ); \
  15.         (cd xcontact ; $(MAKE) ); \
  16.     fi
  17.  
  18. clean:
  19.     cd VCal; $(MAKE) clean
  20.     cd builderExamples; $(MAKE) clean
  21.     cd xcontact; $(MAKE) clean
  22.  
  23. clobber:
  24.     cd VCal; $(MAKE) clobber
  25.     cd builderExamples; $(MAKE) clobber
  26.     cd xcontact; $(MAKE) clobber
  27.