summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYangqing Jia <jiayq84@gmail.com>2015-11-27 21:31:09 -0800
committerYangqing Jia <jiayq84@gmail.com>2015-11-27 21:31:09 -0800
commitfcd5f8fbf0027e5194ef4190583c07c9db4d852a (patch)
tree301f58db0a14d234aed8c39ce97717c68be34c29 /Makefile
parent3dcb868411c9525ca20156925c887b3d893b2399 (diff)
downloadpytorch-fcd5f8fbf0027e5194ef4190583c07c9db4d852a.tar.gz
pytorch-fcd5f8fbf0027e5194ef4190583c07c9db4d852a.tar.bz2
pytorch-fcd5f8fbf0027e5194ef4190583c07c9db4d852a.zip
move to the new build scripts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 4f0f5a6ecf..34a8bcdc00 100644
--- a/Makefile
+++ b/Makefile
@@ -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 {} \;