diff options
author | Jeff Donahue <jeff.donahue@gmail.com> | 2014-04-04 13:44:34 -0700 |
---|---|---|
committer | Jeff Donahue <jeff.donahue@gmail.com> | 2014-04-04 13:44:34 -0700 |
commit | 76caca3a5a5027e1cbe43123a6db9e9d89ac347d (patch) | |
tree | 89c8c98126748b190eb099897d43f2ff947be6a3 | |
parent | 6b3d257eea7680c96332e6359c12eba93a784c75 (diff) | |
download | caffeonacl-76caca3a5a5027e1cbe43123a6db9e9d89ac347d.tar.gz caffeonacl-76caca3a5a5027e1cbe43123a6db9e9d89ac347d.tar.bz2 caffeonacl-76caca3a5a5027e1cbe43123a6db9e9d89ac347d.zip |
gitignore python/caffe/proto/; superclean ignore data dir
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -34,6 +34,7 @@ build/* distribute/* *.testbin *.bin +python/caffe/proto/ # Editor temporaries *.swp @@ -332,7 +332,8 @@ clean: supercleanfiles: $(eval SUPERCLEAN_FILES := $(strip \ - $(foreach ext,$(SUPERCLEAN_EXTS), $(shell find . -name '*$(ext)')))) + $(foreach ext,$(SUPERCLEAN_EXTS), $(shell find . -name '*$(ext)' \ + -not -path './data/*')))) supercleanlist: supercleanfiles @ \ |