source: mainline/Makefile@ 10de842

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

Change the way errno_t is defined, and put libhttp and libext4 error codes in <errno.h>.

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[3654684]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
[db3089d]32CCHECK = tools/sycek/ccheck
[218e50c]33CSCOPE = cscope
[b1efe3e]34FORMAT = clang-format
[eb221e5]35CHECK = tools/check.sh
[8786aa5]36CONFIG = tools/config.py
[177e4ea]37AUTOTOOL = tools/autotool.py
[4e9aaf5]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
[3529fbf0]47ERRNO_HEADER = abi/include/abi/errno.h
48ERRNO_INPUT = abi/include/abi/errno.in
[656437a0]49
[feab36ae]50.PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release common boot kernel uspace
[41f7564]51
[feab36ae]52all: kernel uspace
53 $(MAKE) -r -C boot PRECHECK=$(PRECHECK)
54
[3529fbf0]55common: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(ERRNO_HEADER)
[feab36ae]56
57kernel: common
[e540bc87]58 $(MAKE) -r -C kernel PRECHECK=$(PRECHECK)
[feab36ae]59
60uspace: common
[e540bc87]61 $(MAKE) -r -C uspace PRECHECK=$(PRECHECK)
[41f7564]62
[8786aa5]63precheck: clean
[e540bc87]64 $(MAKE) -r all PRECHECK=y
[656437a0]65
66cscope:
[6eda732]67 find abi kernel boot uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
[656437a0]68
[efb94a77]69cscope_parts:
[6eda732]70 find abi -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_abi.out
71 find kernel -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_kernel.out
72 find boot -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
73 find uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
[efb94a77]74
[b1efe3e]75format:
76 find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
77
[db3089d]78ccheck: $(CCHECK)
79 tools/ccheck.sh
80
81$(CCHECK):
82 cd tools && ./build-ccheck.sh
83
[7f345cd0]84doxy:
85 $(MAKE) -r -C doxygen
86
[eb221e5]87# Pre-integration build check
88check: $(CHECK)
89ifdef JOBS
90 $(CHECK) -j $(JOBS)
91else
92 $(CHECK)
93endif
94
[83fd0d7]95# Autotool (detects compiler features)
96
[cc92076]97autotool $(COMMON_MAKEFILE) $(COMMON_HEADER): $(CONFIG_MAKEFILE) $(AUTOTOOL)
[177e4ea]98 $(AUTOTOOL)
[cc92076]99 diff -q $(COMMON_HEADER).new $(COMMON_HEADER) 2> /dev/null; if [ $$? -ne 0 ]; then mv -f $(COMMON_HEADER).new $(COMMON_HEADER); fi
[177e4ea]100
[83fd0d7]101# Build-time configuration
102
[c6f4681]103config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES)
[e3c3172]104ifeq ($(HANDS_OFF),y)
105 $(CONFIG) $< hands-off $(PROFILE)
106else
[6ec0acd]107 $(CONFIG) $< default $(PROFILE)
[e3c3172]108endif
[4cac212c]109
[4e9aaf5]110config: $(CONFIG_RULES)
111 $(CONFIG) $<
[41f7564]112
[f857e8b]113random-config: $(CONFIG_RULES)
114 $(CONFIG) $< random
115
[471569b]116# Release files
[83fd0d7]117
[471569b]118releasefile: all
[e540bc87]119 $(MAKE) -r -C release releasefile
[83fd0d7]120
[471569b]121release:
[e540bc87]122 $(MAKE) -r -C release release
[83fd0d7]123
124# Cleaning
125
[9a0367f]126distclean: clean
[cc92076]127 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
[41f7564]128
129clean:
[4e9aaf5]130 rm -fr $(SANDBOX)
[e540bc87]131 $(MAKE) -r -C kernel clean
132 $(MAKE) -r -C uspace clean
133 $(MAKE) -r -C boot clean
[7f345cd0]134 $(MAKE) -r -C doxygen clean
[4bc309b]135
[3529fbf0]136$(ERRNO_HEADER): $(ERRNO_INPUT)
137 echo '/* Generated file. Edit errno.in instead. */' > $@.new
[10de842]138 sed 's/__errno_entry(\([^,]*\),\([^,]*\),.*/#define \1 __errno_t(\2)/' < $< >> $@.new
[3529fbf0]139 mv $@.new $@
140
[4bc309b]141-include Makefile.local
Note: See TracBrowser for help on using the repository browser.