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

  1. SHELL = /bin/sh
  2.  
  3. # for version 3.3 and beyond of the Developer Toolbox, this Makefile 
  4. # has been modified to automatically only step into timer since 
  5. # kernel_switch is pertinent only for 4.0.5 IRIX systems or earlier
  6.  
  7. LIBPFA    = /usr/lib/pfa
  8. all:
  9.     if [ -r ${LIBPFA} ]  ;   then \
  10.         (cd timer; $(MAKE) ); \
  11.     else     \
  12.         echo ========== ; \
  13.         echo \ \ \ \  Power Fortran is not installed--cannot compile timer ; \
  14.         echo \ \ \ \  get/load the \"pfa\" software option ; \
  15.         echo ========== ; \
  16.     fi
  17.  
  18. clean:
  19.     cd timer; $(MAKE) clean
  20.  
  21. clobber:
  22.     cd timer; $(MAKE) clobber
  23.