1 Star 0 Fork 1

zdzhaoyong / EICAM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
zdzhaoyong 提交于 2015-11-26 14:33 . added camera things and readme
################################################################################
#Lib_ZY Top Makefile.
################################################################################
export MAKE = make -j4
export MAKE_OS = linux # win32 mac
export TOPDIR = $(shell pwd)
#Where to put object files *.o
export BUILD_PATH = $(TOPDIR)/build
#Where to put final applications
export BIN_PATH = $(TOPDIR)/bin
#Where to put libraries
export LIBS_PATH = $(TOPDIR)/libs
export LIB_MAKE_TYPE = shared # static #
.PHONY: all apps libs sophus vikit_common thirdparty
all :libs apps
libs:
@echo "Compiling librarys of PIL"
$(MAKE) -C src
thirdparty:sophus vikit_common
sophus:
@echo "Compiling librarys of PIL"
$(MAKE) -C Thirdparty/sophus
vikit_common: sophus
@echo "Compiling librarys of PIL"
$(MAKE) -C Thirdparty/vikit_common
apps: libs thirdparty
@echo "Compiling apps of PIL"
$(MAKE) -C apps
clean :
rm -r $(BUILD_PATH)/* $(BIN_PATH)/*
clean_tmp:
rm -r $(BUILD_PATH)/*
C++
1
https://gitee.com/zdzhaoyong/EICAM.git
git@gitee.com:zdzhaoyong/EICAM.git
zdzhaoyong
EICAM
EICAM
master

搜索帮助