diff options
author | Yangqing Jia <jiayq84@gmail.com> | 2015-11-27 21:31:09 -0800 |
---|---|---|
committer | Yangqing Jia <jiayq84@gmail.com> | 2015-11-27 21:31:09 -0800 |
commit | fcd5f8fbf0027e5194ef4190583c07c9db4d852a (patch) | |
tree | 301f58db0a14d234aed8c39ce97717c68be34c29 /Makefile | |
parent | 3dcb868411c9525ca20156925c887b3d893b2399 (diff) | |
download | pytorch-fcd5f8fbf0027e5194ef4190583c07c9db4d852a.tar.gz pytorch-fcd5f8fbf0027e5194ef4190583c07c9db4d852a.tar.bz2 pytorch-fcd5f8fbf0027e5194ef4190583c07c9db4d852a.zip |
move to the new build scripts
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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 {} \; |