source: mainline/Makefile@ 2c38a55b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2c38a55b was e428bec, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Allow changing build directory

  • Property mode set to 100644
File size: 5.7 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
32CCHECK = tools/sycek/ccheck
33CSCOPE = cscope
34FORMAT = clang-format
35CHECK = tools/check.sh
36CONFIG = tools/config.py
37AUTOTOOL = tools/autotool.py
38SANDBOX = autotool
39MESON = meson
40
41BUILD_DIR=$(abspath build)
42
43CONFIG_RULES = HelenOS.config
44
45COMMON_MAKEFILE = Makefile.common
46
47CONFIG_MAKEFILE = Makefile.config
48CONFIG_HEADER = config.h
49ERRNO_HEADER = abi/include/abi/errno.h
50ERRNO_INPUT = abi/include/abi/errno.in
51
52-include $(CONFIG_MAKEFILE)
53-include $(COMMON_MAKEFILE)
54
55# TODO: make meson reconfigure correctly when library build changes
56
57ifeq ($(CONFIG_BUILD_SHARED_LIBS),y)
58 MESON_ARGS = -Ddefault_library=shared
59else
60 MESON_ARGS = -Ddefault_library=static
61endif
62
63CROSS_PATH = $(shell dirname "$(CC)")
64
65.PHONY: all precheck cscope cscope_parts autotool config_default config distclean clean check releasefile release common export-posix space
66
67all: common export-cross test-xcw
68 $(MAKE) -r -C boot PRECHECK=$(PRECHECK) BUILD_DIR=$(BUILD_DIR)
69
70$(BUILD_DIR)/build.ninja: Makefile.config version
71 PATH="$(CROSS_PATH):$$PATH" meson . $(BUILD_DIR) --cross-file meson/cross/$(UARCH) $(MESON_ARGS)
72
73common: $(COMMON_MAKEFILE) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(ERRNO_HEADER) $(BUILD_DIR)/build.ninja
74 PATH="$(CROSS_PATH):$$PATH" ninja -C $(BUILD_DIR)
75 PATH="$(CROSS_PATH):$$PATH" DESTDIR="$(BUILD_DIR)/dist" meson install --no-rebuild --only-changed -C $(BUILD_DIR) > $(BUILD_DIR)/install.log
76
77test-xcw: common export-cross
78ifeq ($(CONFIG_DEVEL_FILES),y)
79 export PATH=$$PATH:$(abspath tools/xcw/bin) && $(MAKE) -r -C tools/xcw/demo
80endif
81
82export-posix: common
83ifndef EXPORT_DIR
84 @echo ERROR: Variable EXPORT_DIR is not defined. && false
85else
86 mkdir -p $(EXPORT_DIR)
87 $(MAKE) -r -C uspace/lib/posix export EXPORT_DIR=$(abspath $(EXPORT_DIR)) UARCH=$(UARCH)
88endif
89
90export-cross: common
91 mkdir -p uspace/export
92 $(MAKE) -r -C uspace export EXPORT_DIR=$(abspath uspace/export) UARCH=$(UARCH)
93
94precheck: clean
95 $(MAKE) -r all PRECHECK=y
96
97cscope:
98 find abi kernel boot uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
99
100cscope_parts:
101 find abi -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_abi.out
102 find kernel -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_kernel.out
103 find boot -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
104 find uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
105
106format:
107 find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
108
109ccheck: $(CCHECK)
110 cd tools && ./build-ccheck.sh
111 tools/ccheck.sh
112
113ccheck-fix: $(CCHECK)
114 cd tools && ./build-ccheck.sh
115 tools/ccheck.sh --fix
116
117$(CCHECK):
118 cd tools && ./build-ccheck.sh
119
120space:
121 tools/srepl '[ \t]\+$$' ''
122
123doxy:
124 $(MAKE) -r -C doxygen
125
126# Pre-integration build check
127check: ccheck $(CHECK)
128ifdef JOBS
129 $(CHECK) -j $(JOBS)
130else
131 $(CHECK) -j $(shell nproc)
132endif
133
134# `sed` pulls a list of "compatibility-only" error codes from `errno.in`,
135# the following grep finds instances of those error codes in HelenOS code.
136check_errno:
137 @ ! cat abi/include/abi/errno.in | \
138 sed -n -e '1,/COMPAT_START/d' -e 's/__errno_entry(\([A-Z0-9]\+\).*/\\b\1\\b/p' | \
139 git grep -n -f - -- ':(exclude)abi' ':(exclude)uspace/lib/posix'
140
141# Autotool (detects compiler features)
142
143autotool $(COMMON_MAKEFILE): $(CONFIG_MAKEFILE) $(AUTOTOOL)
144 $(AUTOTOOL)
145
146# Build-time configuration
147
148config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES)
149ifeq ($(HANDS_OFF),y)
150 $(CONFIG) $< hands-off $(PROFILE)
151else
152 $(CONFIG) $< default $(PROFILE)
153endif
154
155config: $(CONFIG_RULES)
156 $(CONFIG) $<
157
158random-config: $(CONFIG_RULES)
159 $(CONFIG) $< random
160
161# Release files
162
163releasefile: all
164 $(MAKE) -r -C release releasefile
165
166release:
167 $(MAKE) -r -C release release
168
169# Cleaning
170
171distclean: clean
172 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
173
174clean:
175 rm -fr $(SANDBOX)
176 $(MAKE) -r -C kernel clean
177 $(MAKE) -r -C uspace clean
178 $(MAKE) -r -C boot clean
179 $(MAKE) -r -C doxygen clean
180 $(MAKE) -r -C tools/xcw/demo clean
181
182$(ERRNO_HEADER): $(ERRNO_INPUT)
183 echo '/* Generated file. Edit errno.in instead. */' > $@.new
184 sed 's/__errno_entry(\([^,]*\),\([^,]*\),.*/#define \1 __errno_t(\2)/' < $< >> $@.new
185 mv $@.new $@
186
187-include Makefile.local
Note: See TracBrowser for help on using the repository browser.