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

  1. SHELL    = /bin/sh
  2.  
  3. LIBSPEECH= /usr/lib/libspeech.a
  4.  
  5. all:
  6.     if [ ! -r ${LIBSPEECH} ]  ;   then \
  7.         echo ========== ; \
  8.         echo \ \ \ \ \ \  /usr/lib/libspeech.a is not installed ; \
  9.         echo \ \ \ \ \ \  --cannot compile toolbox/src/exampleCode/speech code ; \
  10.         echo \ \ \ \ \ \  load both the \"speech_eoe.sw.eoe\" and \"speech_dev.sw.dev\" software options . . . ; \
  11.         echo ========== ; \
  12.     else     \
  13.         (cd examples; $(MAKE) ); \
  14.         (cd lackey; $(MAKE) ); \
  15.     fi
  16.  
  17. clean:
  18.     cd examples; $(MAKE) clean
  19.     cd lackey; $(MAKE) clean
  20.  
  21. clobber:
  22.     cd examples; $(MAKE) clobber
  23.     cd lackey; $(MAKE) clobber
  24.