1 Star 0 Fork 1

zdzhaoyong/EICAM

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Makefile 1.02 KB
Copy Edit Raw Blame History
zdzhaoyong authored 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)/*
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zdzhaoyong/EICAM.git
git@gitee.com:zdzhaoyong/EICAM.git
zdzhaoyong
EICAM
EICAM
master

Search