source: mainline/Makefile@ 2e5aea1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2e5aea1 was b1efe3e, checked in by jzr <zarevucky.jiri@…>, 8 years ago

Add partial support for clang-format.

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[41f7564]1#
[df4ed85]2# Copyright (c) 2006 Martin Decky
[41f7564]3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
[bb285b4]29# Just for this Makefile. Sub-makes will run in parallel if requested.
30.NOTPARALLEL:
31
[218e50c]32CSCOPE = cscope
[b1efe3e]33FORMAT = clang-format
[eb221e5]34CHECK = tools/check.sh
[8786aa5]35CONFIG = tools/config.py
[177e4ea]36AUTOTOOL = tools/autotool.py
[4e9aaf5]37SANDBOX = autotool
38
39CONFIG_RULES = HelenOS.config
40
41COMMON_MAKEFILE = Makefile.common
42COMMON_HEADER = common.h
43COMMON_HEADER_PREV = $(COMMON_HEADER).prev
44
45CONFIG_MAKEFILE = Makefile.config
46CONFIG_HEADER = config.h
[656437a0]47
[efb94a77]48.PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release
[41f7564]49
[4e9aaf5]50all: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER)
51 cp -a $(COMMON_HEADER) $(COMMON_HEADER_PREV)
[e540bc87]52 $(MAKE) -r -C kernel PRECHECK=$(PRECHECK)
53 $(MAKE) -r -C uspace PRECHECK=$(PRECHECK)
54 $(MAKE) -r -C boot PRECHECK=$(PRECHECK)
[41f7564]55
[8786aa5]56precheck: clean
[e540bc87]57 $(MAKE) -r all PRECHECK=y
[656437a0]58
59cscope:
[6eda732]60 find abi kernel boot uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
[656437a0]61
[efb94a77]62cscope_parts:
[6eda732]63 find abi -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_abi.out
64 find kernel -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_kernel.out
65 find boot -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
66 find uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
[efb94a77]67
[b1efe3e]68format:
69 find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
70
[eb221e5]71# Pre-integration build check
72check: $(CHECK)
73ifdef JOBS
74 $(CHECK) -j $(JOBS)
75else
76 $(CHECK)
77endif
78
[83fd0d7]79# Autotool (detects compiler features)
80
[c6f4681]81autotool $(COMMON_MAKEFILE) $(COMMON_HEADER): $(CONFIG_MAKEFILE)
[177e4ea]82 $(AUTOTOOL)
[4e9aaf5]83 -[ -f $(COMMON_HEADER_PREV) ] && diff -q $(COMMON_HEADER_PREV) $(COMMON_HEADER) && mv -f $(COMMON_HEADER_PREV) $(COMMON_HEADER)
[177e4ea]84
[83fd0d7]85# Build-time configuration
86
[c6f4681]87config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES)
[e3c3172]88ifeq ($(HANDS_OFF),y)
89 $(CONFIG) $< hands-off $(PROFILE)
90else
[6ec0acd]91 $(CONFIG) $< default $(PROFILE)
[e3c3172]92endif
[4cac212c]93
[4e9aaf5]94config: $(CONFIG_RULES)
95 $(CONFIG) $<
[41f7564]96
[f857e8b]97random-config: $(CONFIG_RULES)
98 $(CONFIG) $< random
99
[471569b]100# Release files
[83fd0d7]101
[471569b]102releasefile: all
[e540bc87]103 $(MAKE) -r -C release releasefile
[83fd0d7]104
[471569b]105release:
[e540bc87]106 $(MAKE) -r -C release release
[83fd0d7]107
108# Cleaning
109
[9a0367f]110distclean: clean
[406d514]111 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(COMMON_HEADER_PREV) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
[41f7564]112
113clean:
[4e9aaf5]114 rm -fr $(SANDBOX)
[e540bc87]115 $(MAKE) -r -C kernel clean
116 $(MAKE) -r -C uspace clean
117 $(MAKE) -r -C boot clean
[4bc309b]118
119-include Makefile.local
Note: See TracBrowser for help on using the repository browser.