This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Tams-MacBook-Pro:caffe_orig tamtran$ otool -L .build_release/lib/libcaffe.so | |
| .build_release/lib/libcaffe.so: | |
| @rpath/libcaffe.so.1.0.0-rc5 (compatibility version 0.0.0, current version 0.0.0) | |
| /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate (compatibility version 1.0.0, current version 4.0.0) | |
| @rpath/libopencv_shape.3.2.dylib (compatibility version 3.2.0, current version 3.2.0) | |
| @rpath/libopencv_stitching.3.2.dylib (compatibility version 3.2.0, current version 3.2.0) | |
| @rpath/libopencv_objdetect.3.2.dylib (compatibility version 3.2.0, current version 3.2.0) | |
| @rpath/libopencv_superres.3.2.dylib (compatibility version 3.2.0, current version 3.2.0) | |
| @rpath/libopencv_videostab.3.2.dylib (compatibility version 3.2.0, current version 3.2.0) | |
| @rpath/libopencv_calib3d.3.2.dylib (compatibility version 3.2.0, current version 3.2.0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PROJECT := caffe | |
| CONFIG_FILE := Makefile.config | |
| # Explicitly check for the config file, otherwise make -k will proceed anyway. | |
| ifeq ($(wildcard $(CONFIG_FILE)),) | |
| $(error $(CONFIG_FILE) not found. See $(CONFIG_FILE).example.) | |
| endif | |
| include $(CONFIG_FILE) | |
| BUILD_DIR_LINK := $(BUILD_DIR) |