diff options
-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 @ \ |