-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
100 lines (79 loc) · 2.17 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
# Copyright 2020 Indemind 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.
include CommonDefs.mk
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
MKFILE_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH)))
# CMAKE_INSTALL_PREFIX:
# https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html
#
# UNIX: /usr/local
# Windows: c:/Program Files/${PROJECT_NAME}
# Options
#
# SUDO: sudo command
#
# e.g. make [TARGET] SUDO=
SUDO ?= sudo
CMAKE_BUILD_EXTRA_OPTIONS ?=
.DEFAULT_GOAL := all
help:
@echo "Usage:"
@echo " make help show help message"
@echo " make init init project"
@echo " make demo build demo"
@echo " make clean clean generated or useless things"
.PHONY: help
all: init demo ros
.PHONY: all
# init
init:
@$(call echo,Make $@)
@$(SH) ./scripts/init.sh $(INIT_OPTIONS)
.PHONY: init
# demo
demo:
@$(call echo,Make $@)
@$(call cmake_build,./demo/build)
sh ./scripts/cp_files.sh
.PHONY: demo
# ros
ros:
@$(call echo,Make $@)
ifeq ($(HOST_OS),Linux)
@cd ./ros && catkin_make -DCMAKE_BUILD_TYPE=$(BUILD_TYPE)
sh ./scripts/cp_files_ros.sh
else
$(error "Can't make ros on $(HOST_OS)")
endif
.PHONY: ros
cleanros:
@$(call echo,Make $@)
@$(call rm,./ros/build/)
@$(call rm,./ros/devel/)
@$(call rm,./ros/install/)
@$(call rm,./ros/.catkin_workspace)
@$(call rm,./ros/src/CMakeLists.txt)
@$(call rm_f,*INFO*,$(HOME)/.ros/)
@$(call rm_f,*WARNING*,$(HOME)/.ros/)
@$(call rm_f,*ERROR*,$(HOME)/.ros/)
@$(call rm_f,*FATAL*,$(HOME)/.ros/)
.PHONY: cleanros
# clean
clean:
@$(call echo,Make $@)
@$(call rm,./demo/build/)
@$(call rm,./demo/output/)
ifeq ($(HOST_OS),Linux)
@$(MAKE) cleanros
endif