A clean init for Caffe2, removing my earlier hacky

commits.
This commit is contained in:
Yangqing Jia
2015-06-25 16:26:01 -07:00
commit 2ed1077a83
197 changed files with 52453 additions and 0 deletions

21
Makefile Normal file
View File

@ -0,0 +1,21 @@
# This makefile does nothing but delegating the actual compilation to build.py.
all:
@python brewery.py build
clean:
@python brewery.py clean
reallyclean:
@python brewery.py reallyclean
test:
@python brewery.py test
lint:
@find caffe2 -type f -exec python cpplint.py {} \;
linecount:
@cloc --read-lang-def=caffe.cloc caffe2 pycaffe2 || \
echo "Cloc is not available on the machine. You can install cloc with " && \
echo " sudo apt-get install cloc"