source: mainline/Makefile@ a5c468e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a5c468e was a5c468e, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Build XCW demo as part of default target. Need to get real CFLAGS to fix some ARM targets, use export target. Make export as part of default target into uspace/export. Update gitignore.

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