move to the new build scripts

This commit is contained in:
Yangqing Jia
2015-11-27 21:31:09 -08:00
parent 3dcb868411
commit fcd5f8fbf0
4 changed files with 3 additions and 956 deletions

View File

@ -1,16 +1,13 @@
# This makefile does nothing but delegating the actual compilation to build.py.
all:
@python brewery.py build
@python build.py build
clean:
@python brewery.py clean
reallyclean:
@python brewery.py reallyclean
@python build.py clean
test:
@python brewery.py test
@python build.py test
lint:
@find caffe2 -type f -exec python cpplint.py {} \;