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

  1. SHELL = /bin/sh
  2.  
  3. # for version 3.3 of the Developer Toolbox, this Makefile has been
  4. # modified to automatically only step into timer since kernel_switch
  5. # is pertinent only for 4.0.5 Irix systems or earlier
  6.  
  7. all:
  8.     cd highres; $(MAKE)
  9.     cd regular; $(MAKE)
  10.  
  11. clean:
  12.     cd highres; $(MAKE) clean
  13.     cd regular; $(MAKE) clean
  14.  
  15. clobber:
  16.     cd highres; $(MAKE) clobber
  17.     cd regular; $(MAKE) clobber
  18.