summaryrefslogtreecommitdiffstats
path: root/autobuild/linux/autobuild
blob: 16181b82628143f2d3e391428fc2021d92757c9c (plain)
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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn 
#!/usr/bin/make -f
# Copyright (C) 2015 - 2018 "IoT.bzh"
# Copyright (C) 2020 Konsulko Group
# Author "Romain Forlot" <romain.forlot@iot.bzh>
#
# 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.

THISFILE  := $(lastword $(MAKEFILE_LIST))
ROOT_DIR := $(abspath $(dir $(THISFILE))/../..)

# Build directories
# Note that the debug/test/coverage directories are defined in relation
# to the release directory (BUILD_DIR), this needs to be kept in mind
# if over-riding it and building those widget types, the specific widget
# type variable (e.g. BUILD_DIR_DEBUG) may also need to be specified
# to yield the desired output hierarchy.
BUILD_DIR = $(ROOT_DIR)/build
BUILD_DIR_DEBUG = $(abspath $(BUILD_DIR)/../build-debug)
BUILD_DIR_TEST = $(abspath $(BUILD_DIR)/../build-test)
BUILD_DIR_COVERAGE = $(abspath $(BUILD_DIR)/../build-coverage)

# Output directory variable for use in pattern rules.
# This is intended for internal use only, hence the explicit override
# definition.
override OUTPUT_DIR = $(BUILD_DIR)

# Final install directory for widgets
DEST = $(OUTPUT_DIR)

# Default build type for release/test builds
BUILD_TYPE = RELEASE

.PHONY: all help update install distclean
.PHONY: clean clean-release clean-debug clean-test clean-coverage clean-all
.PHONY: configure configure-release configure-debug configure-test configure-coverage
.PHONY: build build-release build-debug build-test build-coverage build-all
.PHONY: package package-release package-debug package-test package-coverage package-all

help:
	@echo "List of targets available:"
	@echo ""
	@echo "- all"
	@echo "- help"
	@echo "- clean"
	@echo "- distclean"
	@echo "- configure"
	@echo "- build: compilation, link and prepare files for package into a widget"
	@echo "- package: output a widget file '*.wgt'"
	@echo "- install: install in your $(CMAKE_INSTALL_DIR) directory"
	@echo ""
	@echo "Usage: ./autobuild/agl/autobuild package DEST=${HOME}/opt"
	@echo "Don't use your build dir as DEST as wgt file is generated at this location"

all: package-all

# Target specific variable over-rides so static pattern rules can be
# used for the various type-specific targets.

configure-test build-test package-test clean-test: OUTPUT_DIR = $(BUILD_DIR_TEST)

configure-coverage build-coverage package-coverage clean-coverage: OUTPUT_DIR = $(BUILD_DIR_COVERAGE)
configure-coverage build-coverage package-coverage: BUILD_TYPE = COVERAGE

configure-debug build-debug package-debug clean-debug: OUTPUT_DIR = $(BUILD_DIR_DEBUG)
configure-debug build-debug package-debug: BUILD_TYPE = DEBUG

clean-release clean-test clean-debug clean-coverage:
	@if [ -d $(OUTPUT_DIR) ]; then \
		$(MAKE) -C $(OUTPUT_DIR) $(CLEAN_ARGS) clean; \
	else \
		echo Nothing to clean; \
	fi

clean: clean-release

clean-all: clean-release clean-test clean-debug clean-coverage

distclean: clean-all

configure-release configure-test configure-debug configure-coverage:
	@mkdir -p $(OUTPUT_DIR)
	@if [ ! -f $(OUTPUT_DIR)/Makefile ]; then \
		(cd $(OUTPUT_DIR) && cmake -S $(ROOT_DIR) -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) $(CONFIGURE_ARGS)); \
	fi

configure: configure-release

build-release build-debug build-coverage: build-%: configure-%
	@cmake --build $(OUTPUT_DIR) $(BUILD_ARGS) --target all

# Kept for consistency, empty to avoid building everything for test widget
build-test: configure-test

build: build-release

build-all: build-release build-debug build-test build-coverage

package-release package-debug package-coverage: package-%: build-%
	@cmake --build $(OUTPUT_DIR) $(PACKAGE_ARGS) --target widget
	@if [ "$(abspath $(DEST))" != "$(abspath $(OUTPUT_DIR))" ]; then \
		mkdir -p $(DEST) && cp $(OUTPUT_DIR)/*.wgt $(DEST); \
	fi

package-test: build-test
	@cmake --build $(OUTPUT_DIR) $(PACKAGE_ARGS) --target test_widget
	@if [ "$(abspath $(DEST))" != "$(abspath $(OUTPUT_DIR))" ]; then \
		mkdir -p $(DEST) && cp $(OUTPUT_DIR)/*.wgt $(DEST); \
	fi

package: package-release

package-all: package-release package-test package-coverage package-debug

update: configure
	@cmake --build $(BUILD_DIR) --target autobuild

install: build
	@cmake --build $(BUILD_DIR) $(INSTALL_ARGS) --target install