Migrate brewtool stuff into brewtool/ and update makefile to use cmake

This commit is contained in:
Bram Wasti
2017-01-04 10:56:15 -08:00
parent ae17168939
commit 3f432a8d43
4 changed files with 4 additions and 231 deletions

View File

@ -1,16 +1,16 @@
# This makefile does nothing but delegating the actual compilation to build.py.
all:
@python build.py build
@mkdir -p build && cd build && cmake .. && make
android:
@python build_android.py build
@python brewtool/build_android.py build
clean:
@python build.py clean
@rm -r build/
test:
@python build.py test
@python brewtool/build.py test
lint:
@find caffe2 -type f -exec python brewtool/cpplint.py {} \;