-
Notifications
You must be signed in to change notification settings - Fork 88
/
Makefile
executable file
·225 lines (180 loc) · 5.3 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# Copyright 2018 Slightech Co., Ltd. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
MKFILE_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH)))
include CommonDefs.mk
SUDO ?= sudo
CMAKE_BUILD_EXTRA_OPTIONS ?=
.DEFAULT_GOAL := all
.PHONY: help
help:
@echo "Usage:"
@echo " make help show help message"
@echo " make init init project"
@echo " make build build project"
@echo " make install build and install"
@echo " make samples build samples"
@echo " make ros build ros wrapper"
@echo " make apidoc build api doc"
@echo " make pkg package sdk"
@echo " make clean clean"
@echo " make cleanall cleanall"
# all
all: init samples ros
.PHONY: all
# deps
submodules:
@git submodule update --init
# init
init:
@$(call echo,Make $@)
@$(SH) ./scripts/init.sh $(INIT_OPTIONS)
.PHONY: init
# build
build:
@$(call echo,Make $@)
ifeq ($(HOST_OS),Win)
@$(call cmake_build,./_build,..,-DCMAKE_INSTALL_PREFIX=$(MKFILE_DIR)/_install $(CMAKE_BUILD_EXTRA_OPTIONS))
else
@$(call cmake_build,./_build,..,$(CMAKE_BUILD_EXTRA_OPTIONS))
endif
.PHONY: build
# install
install: uninstall build
@$(call echo,Make $@)
ifeq ($(HOST_OS),Win)
ifneq ($(HOST_NAME),MinGW)
@cd ./_build; msbuild.exe INSTALL.vcxproj /property:Configuration=Release
else
@cd ./_build; make install
endif
else
ifeq ($(HOST_OS),Linux)
@cd ./_build; $(SUDO) make install
else
@cd ./_build; make install
endif
endif
.PHONY: install
uninstall:
@$(call echo,Make $@)
ifeq ($(HOST_OS),Linux)
$(SUDO) rm -rf /usr/local/include/mynteyed/
$(SUDO) rm -rf /usr/local/lib/libmynteye_depth.so*
$(SUDO) rm -rf /usr/local/lib/3rdparty/libeSPDI.so*
$(SUDO) rm -rf /usr/local/lib/cmake/mynteyed/
$(SUDO) rm -rf /usr/local/share/mynteyed/
endif
.PHONY: uninstall
# samples
samples: install
@$(call echo,Make $@)
@$(call cmake_build,./samples/_build)
.PHONY: samples
# ros
ros: install
ifeq ($(HOST_OS),Linux)
@$(call echo,Make $@)
@cd ./wrappers/ros && catkin_make
endif
cleanros:
@$(call echo,Make $@)
@$(call rm,./wrappers/ros/build/)
@$(call rm,./wrappers/ros/devel/)
@$(call rm,./wrappers/ros/install/)
@$(call rm,./wrappers/ros/.catkin_workspace)
@$(call rm,./wrappers/ros/src/CMakeLists.txt)
.PHONY: ros cleanros
# doc
doc: apidoc
apidoc: cleandoc
@$(call echo,Make $@)
@cd docs; make html
opendoc: apidoc
@$(call echo,Make $@)
@$(SH) ./scripts/open.sh docs/_build/html/index.html
cleandoc:
@$(call rm,./docs/_build/)
@$(call rm,./docs/_doxygen/)
.PHONY: doc apidoc opendoc cleandoc
# pkg
.PHONY: pkg
pkg:
@$(call echo,Make $@)
ifeq ($(HOST_OS),Win)
@$(MAKE) clean
@$(SH) ./scripts/win/winpack.sh "$(PKGNAME)"
else ifeq ($(HOST_OS),Linux)
@$(MAKE) install cleanros
@$(call echo,Copy ./cmake to ./_install/cmake ...,1;35)
@$(call cp,./cmake/Common.cmake,./_install/cmake/Common.cmake)
@$(call cp,./cmake/DetectCXX11.cmake,./_install/cmake/DetectCXX11.cmake)
@$(call cp,./cmake/DetectOpenCV.cmake,./_install/cmake/DetectOpenCV.cmake)
@$(call cp,./cmake/IncludeGuard.cmake,./_install/cmake/IncludeGuard.cmake)
@$(call echo,Copy ./samples to ./_install/samples ...,1;35)
@$(call rm,./samples/_build/)
@$(call rm,./samples/_output/)
@./scripts/_cp_subs.sh ./samples ./_install/samples
@$(call echo,Copy ./wrappers to ./_install/wrappers ...,1;35)
@./scripts/_cp_subs.sh ./wrappers ./_install/wrappers
@$(call echo,Copy ./platforms/? to ./_install ...,1;35)
@$(call get_platform_path,./platforms); \
if [ -n "$${plat_path}" ]; then \
$(ECHO) "Copy $${plat_path} to ./_install ..."; \
./scripts/_cp_subs.sh $${plat_path} ./_install; \
fi
@$(shell sh ./pkginfo.sh); dst=$(PKGNAME)-opencv-$$OpenCV_VERSION; \
$(call echo,Copy ./_install to $$dst ...,1;35); \
$(call rm,$$dst); $(ECHO) "CP: ./_install > $$dst"; cp -Rp "./_install/." "$$dst"; \
$(call echo,Compress $$dst.tar.gz ...,1;35); \
tar -zcf $$dst.tar.gz $$dst; \
$(call echo,Compress $$dst.tar.gz done,1;35)
else
$(error "Can't make pkg on $(HOST_OS)")
endif
.PHONY: cleanpkg
cleanpkg:
@$(call echo,Make $@)
@$(call rm_f,$(PKGNAME)*)
# clean
.PHONY: clean
clean:
@$(call echo,Make $@)
@$(call rm,./_build/)
@$(call rm,./_output/)
@$(call rm,./_install/)
@$(call rm,./samples/_build/)
@$(call rm,./samples/_output/)
@$(call rm,./pkginfo.sh)
@$(FIND) . -type f -name ".DS_Store" -print0 | xargs -0 rm -f
.PHONY: cleanall
cleanall: clean cleanros cleandoc cleanpkg
@$(call echo,Make $@)
@$(call rm_f,build-*,./apps/)
.PHONY: host
host:
@$(call echo,Make $@)
@echo HOST_OS: $(HOST_OS)
@echo HOST_ARCH: $(HOST_ARCH)
@echo HOST_NAME: $(HOST_NAME)
@echo ECHO: $(ECHO)
@echo CC: $(CC)
@echo CXX: $(CXX)
@echo MAKE: $(MAKE)
@echo BUILD: $(BUILD)
@echo CMAKE: $(CMAKE)
@echo LDD: $(LDD)
@echo FIND: $(FIND)
@echo PKGNAME: $(PKGNAME)
@echo CMAKE_BUILD_EXTRA_OPTIONS: $(CMAKE_BUILD_EXTRA_OPTIONS)