diff options
author | cloudygoose <[email protected]> | 2015-06-25 20:29:52 +0800 |
---|---|---|
committer | cloudygoose <[email protected]> | 2015-06-25 20:29:52 +0800 |
commit | d1c6d254e19ec31b501bd70f0a3adcc824ad8e56 (patch) | |
tree | 345aa46511a69e1fd86b618f6cb1285d8c954d5f /Makefile | |
parent | 555f7f2e8d0578a1228cd736a35f80ba5a891817 (diff) |
make clean added
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: + rm -r $(CURDIR)/install |