diff options
author | Ted Yin <[email protected]> | 2015-06-26 00:45:13 +0800 |
---|---|---|
committer | Ted Yin <[email protected]> | 2015-06-26 00:45:13 +0800 |
commit | aae4195c3898c0da0be5aae0b80e633185e1e242 (patch) | |
tree | 67512bdf955e2753547ebdac2e18f837ce6fa5b0 /Makefile | |
parent | 555f7f2e8d0578a1228cd736a35f80ba5a891817 (diff) | |
parent | d5e95b665b9dc1890fb575fcc9fca5087eaeb674 (diff) |
Merge pull request #34 from cloudygoose/try-matrix-index
add a temporary fix for matrix/vector indexing issue
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,7 @@ .PHONY: all clean install luajit luarocks speech SHELL := /bin/bash PREFIX := $(CURDIR)/install/ -all: luajit luarocks +all: luajit luarocks install luajit: PREFIX=$(PREFIX) ./tools/build_luajit.sh luarocks: @@ -10,3 +10,5 @@ install: cd nerv; $(PREFIX)/bin/luarocks make speech: cd speech/htk_io; $(PREFIX)/bin/luarocks make +clean: + cd nerv && make clean |