From 4f78debea64b0ef4e00513b90f4c7eb99d044c6b Mon Sep 17 00:00:00 2001 From: Dan Povey Date: Tue, 14 May 2013 17:10:22 +0000 Subject: [PATCH] Improved Makefile in tools/ to check dependencies. git-svn-id: https://svn.code.sf.net/p/kaldi/code/trunk@2441 5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8 --- tools/Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 58366c82a..6b2c6a2d4 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,6 +1,15 @@ # SHELL += -x -all: sph2pipe atlas irstlm_tgt sclite_tgt openfst_tgt +all: check_required_programs sph2pipe atlas irstlm_tgt sclite_tgt openfst_tgt + + +check_required_programs: + which aclocal + which automake + which autoconf + which libtoolize || which glibtoolize + which svn + which gcc clean: openfst_cleaned sclite_cleaned irstlm_cleaned