forked from kaldi-asr/kaldi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (22 loc) · 1.04 KB
/
Makefile
File metadata and controls
31 lines (22 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
all:
EXTRA_CXXFLAGS = -Wno-sign-compare
include ../kaldi.mk
LDFLAGS += $(CUDA_LDFLAGS)
LDLIBS += $(CUDA_LDLIBS)
BINFILES = chain-est-phone-lm chain-get-supervision chain-make-den-fst \
nnet3-chain-get-egs nnet3-chain-copy-egs nnet3-chain-merge-egs \
nnet3-chain-shuffle-egs nnet3-chain-subset-egs \
nnet3-chain-acc-lda-stats nnet3-chain-train nnet3-chain-compute-prob \
nnet3-chain-combine nnet3-chain-normalize-egs \
nnet3-chain-e2e-get-egs nnet3-chain-compute-post
OBJFILES =
# Add this dependency to force cuda-compiled.o to be rebuilt when we reconfigure.
cuda-compiled.o: ../kaldi.mk
TESTFILES =
ADDLIBS = ../nnet3/kaldi-nnet3.a ../chain/kaldi-chain.a \
../cudamatrix/kaldi-cudamatrix.a ../decoder/kaldi-decoder.a \
../lat/kaldi-lat.a ../fstext/kaldi-fstext.a ../hmm/kaldi-hmm.a \
../transform/kaldi-transform.a ../gmm/kaldi-gmm.a \
../tree/kaldi-tree.a ../util/kaldi-util.a ../matrix/kaldi-matrix.a \
../base/kaldi-base.a
include ../makefiles/default_rules.mk