home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 587 b | 24 lines |
- SHELL = /bin/sh
-
- LIBSPEECH= /usr/lib/libspeech.a
-
- all:
- if [ ! -r ${LIBSPEECH} ] ; then \
- echo ========== ; \
- echo \ \ \ \ \ \ /usr/lib/libspeech.a is not installed ; \
- echo \ \ \ \ \ \ --cannot compile toolbox/src/exampleCode/speech code ; \
- echo \ \ \ \ \ \ load both the \"speech_eoe.sw.eoe\" and \"speech_dev.sw.dev\" software options . . . ; \
- echo ========== ; \
- else \
- (cd examples; $(MAKE) ); \
- (cd lackey; $(MAKE) ); \
- fi
-
- clean:
- cd examples; $(MAKE) clean
- cd lackey; $(MAKE) clean
-
- clobber:
- cd examples; $(MAKE) clobber
- cd lackey; $(MAKE) clobber
-