source: mainline/Makefile@ 9c14309

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

Split kernel and uspace into separate toplevel targets, to allow
building each individually.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1#
2# Copyright (c) 2006 Martin Decky
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
29# Just for this Makefile. Sub-makes will run in parallel if requested.
30.NOTPARALLEL:
31
32CSCOPE = cscope
33FORMAT = clang-format
34CHECK = tools/check.sh
35CONFIG = tools/config.py
36AUTOTOOL = tools/autotool.py
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
47
48.PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release common boot kernel uspace
49
50all: kernel uspace
51 $(MAKE) -r -C boot PRECHECK=$(PRECHECK)
52
53common: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER)
54 cp -a $(COMMON_HEADER) $(COMMON_HEADER_PREV)
55
56kernel: common
57 $(MAKE) -r -C kernel PRECHECK=$(PRECHECK)
58
59uspace: common
60 $(MAKE) -r -C uspace PRECHECK=$(PRECHECK)
61
62precheck: clean
63 $(MAKE) -r all PRECHECK=y
64
65cscope:
66 find abi kernel boot uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
67
68cscope_parts:
69 find abi -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_abi.out
70 find kernel -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_kernel.out
71 find boot -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
72 find uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
73
74format:
75 find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
76
77# Pre-integration build check
78check: $(CHECK)
79ifdef JOBS
80 $(CHECK) -j $(JOBS)
81else
82 $(CHECK)
83endif
84
85# Autotool (detects compiler features)
86
87autotool $(COMMON_MAKEFILE) $(COMMON_HEADER): $(CONFIG_MAKEFILE)
88 $(AUTOTOOL)
89 -[ -f $(COMMON_HEADER_PREV) ] && diff -q $(COMMON_HEADER_PREV) $(COMMON_HEADER) && mv -f $(COMMON_HEADER_PREV) $(COMMON_HEADER)
90
91# Build-time configuration
92
93config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES)
94ifeq ($(HANDS_OFF),y)
95 $(CONFIG) $< hands-off $(PROFILE)
96else
97 $(CONFIG) $< default $(PROFILE)
98endif
99
100config: $(CONFIG_RULES)
101 $(CONFIG) $<
102
103random-config: $(CONFIG_RULES)
104 $(CONFIG) $< random
105
106# Release files
107
108releasefile: all
109 $(MAKE) -r -C release releasefile
110
111release:
112 $(MAKE) -r -C release release
113
114# Cleaning
115
116distclean: clean
117 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(COMMON_HEADER_PREV) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
118
119clean:
120 rm -fr $(SANDBOX)
121 $(MAKE) -r -C kernel clean
122 $(MAKE) -r -C uspace clean
123 $(MAKE) -r -C boot clean
124
125-include Makefile.local
Note: See TracBrowser for help on using the repository browser.