mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
14 lines
214 B
Makefile
14 lines
214 B
Makefile
|
|
default: bindings
|
|
|
|
clean:
|
|
rm -f deepspeech_wrap.cxx
|
|
rm -rf ./build
|
|
|
|
bindings: deepspeech_wrap.cxx
|
|
node-gyp configure
|
|
node-gyp build
|
|
|
|
deepspeech_wrap.cxx: deepspeech.i
|
|
swig -c++ -javascript -node deepspeech.i
|