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