[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] | 32 | CCHECK = tools/sycek/ccheck
|
---|
[218e50c] | 33 | CSCOPE = cscope
|
---|
[b1efe3e] | 34 | FORMAT = clang-format
|
---|
[eb221e5] | 35 | CHECK = tools/check.sh
|
---|
[8786aa5] | 36 | CONFIG = tools/config.py
|
---|
[177e4ea] | 37 | AUTOTOOL = tools/autotool.py
|
---|
[4e9aaf5] | 38 | SANDBOX = autotool
|
---|
| 39 |
|
---|
| 40 | CONFIG_RULES = HelenOS.config
|
---|
| 41 |
|
---|
| 42 | COMMON_MAKEFILE = Makefile.common
|
---|
| 43 | COMMON_HEADER = common.h
|
---|
| 44 |
|
---|
| 45 | CONFIG_MAKEFILE = Makefile.config
|
---|
| 46 | CONFIG_HEADER = config.h
|
---|
[3529fbf0] | 47 | ERRNO_HEADER = abi/include/abi/errno.h
|
---|
| 48 | ERRNO_INPUT = abi/include/abi/errno.in
|
---|
[656437a0] | 49 |
|
---|
[34e1206] | 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
|
---|
[41f7564] | 51 |
|
---|
[a5c468e] | 52 | all: kernel uspace export-cross test-xcw
|
---|
[feab36ae] | 53 | $(MAKE) -r -C boot PRECHECK=$(PRECHECK)
|
---|
| 54 |
|
---|
[3529fbf0] | 55 | common: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(ERRNO_HEADER)
|
---|
[feab36ae] | 56 |
|
---|
| 57 | kernel: common
|
---|
[e540bc87] | 58 | $(MAKE) -r -C kernel PRECHECK=$(PRECHECK)
|
---|
[feab36ae] | 59 |
|
---|
| 60 | uspace: common
|
---|
[e540bc87] | 61 | $(MAKE) -r -C uspace PRECHECK=$(PRECHECK)
|
---|
[41f7564] | 62 |
|
---|
[a5c468e] | 63 | test-xcw: uspace export-cross
|
---|
[4640416] | 64 | export PATH=$$PATH:$(abspath tools/xcw/bin) && $(MAKE) -r -C tools/xcw/demo
|
---|
[a5c468e] | 65 |
|
---|
[2660ee3] | 66 | export-posix: common
|
---|
| 67 | ifndef EXPORT_DIR
|
---|
| 68 | @echo ERROR: Variable EXPORT_DIR is not defined. && false
|
---|
| 69 | else
|
---|
| 70 | $(MAKE) -r -C uspace export EXPORT_DIR=$(abspath $(EXPORT_DIR))
|
---|
| 71 | endif
|
---|
| 72 |
|
---|
[a5c468e] | 73 | export-cross: common
|
---|
| 74 | $(MAKE) -r -C uspace export EXPORT_DIR=$(abspath uspace/export)
|
---|
| 75 |
|
---|
[8786aa5] | 76 | precheck: clean
|
---|
[e540bc87] | 77 | $(MAKE) -r all PRECHECK=y
|
---|
[656437a0] | 78 |
|
---|
| 79 | cscope:
|
---|
[6eda732] | 80 | find abi kernel boot uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
|
---|
[656437a0] | 81 |
|
---|
[efb94a77] | 82 | cscope_parts:
|
---|
[6eda732] | 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
|
---|
[efb94a77] | 87 |
|
---|
[b1efe3e] | 88 | format:
|
---|
| 89 | find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
|
---|
| 90 |
|
---|
[db3089d] | 91 | ccheck: $(CCHECK)
|
---|
[a4eb3ba2] | 92 | cd tools && ./build-ccheck.sh
|
---|
[db3089d] | 93 | tools/ccheck.sh
|
---|
| 94 |
|
---|
[e347396] | 95 | ccheck-fix: $(CCHECK)
|
---|
[a4eb3ba2] | 96 | cd tools && ./build-ccheck.sh
|
---|
[e347396] | 97 | tools/ccheck.sh --fix
|
---|
| 98 |
|
---|
[86b70c6] | 99 | $(CCHECK):
|
---|
| 100 | cd tools && ./build-ccheck.sh
|
---|
| 101 |
|
---|
[34e1206] | 102 | space:
|
---|
| 103 | tools/srepl '[ \t]\+$$' ''
|
---|
| 104 |
|
---|
[7f345cd0] | 105 | doxy:
|
---|
| 106 | $(MAKE) -r -C doxygen
|
---|
| 107 |
|
---|
[eb221e5] | 108 | # Pre-integration build check
|
---|
[e8f6f94] | 109 | check: ccheck $(CHECK)
|
---|
[3061bc1] | 110 | ifdef JOBS
|
---|
[eb221e5] | 111 | $(CHECK) -j $(JOBS)
|
---|
| 112 | else
|
---|
[5261062] | 113 | $(CHECK) -j $(shell nproc)
|
---|
[eb221e5] | 114 | endif
|
---|
| 115 |
|
---|
[3c7702c0] | 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.
|
---|
| 118 | check_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 |
|
---|
[83fd0d7] | 123 | # Autotool (detects compiler features)
|
---|
| 124 |
|
---|
[cc92076] | 125 | autotool $(COMMON_MAKEFILE) $(COMMON_HEADER): $(CONFIG_MAKEFILE) $(AUTOTOOL)
|
---|
[177e4ea] | 126 | $(AUTOTOOL)
|
---|
[cc92076] | 127 | diff -q $(COMMON_HEADER).new $(COMMON_HEADER) 2> /dev/null; if [ $$? -ne 0 ]; then mv -f $(COMMON_HEADER).new $(COMMON_HEADER); fi
|
---|
[177e4ea] | 128 |
|
---|
[83fd0d7] | 129 | # Build-time configuration
|
---|
| 130 |
|
---|
[c6f4681] | 131 | config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES)
|
---|
[e3c3172] | 132 | ifeq ($(HANDS_OFF),y)
|
---|
| 133 | $(CONFIG) $< hands-off $(PROFILE)
|
---|
| 134 | else
|
---|
[6ec0acd] | 135 | $(CONFIG) $< default $(PROFILE)
|
---|
[e3c3172] | 136 | endif
|
---|
[4cac212c] | 137 |
|
---|
[4e9aaf5] | 138 | config: $(CONFIG_RULES)
|
---|
| 139 | $(CONFIG) $<
|
---|
[41f7564] | 140 |
|
---|
[f857e8b] | 141 | random-config: $(CONFIG_RULES)
|
---|
| 142 | $(CONFIG) $< random
|
---|
| 143 |
|
---|
[471569b] | 144 | # Release files
|
---|
[83fd0d7] | 145 |
|
---|
[471569b] | 146 | releasefile: all
|
---|
[e540bc87] | 147 | $(MAKE) -r -C release releasefile
|
---|
[83fd0d7] | 148 |
|
---|
[471569b] | 149 | release:
|
---|
[e540bc87] | 150 | $(MAKE) -r -C release release
|
---|
[83fd0d7] | 151 |
|
---|
| 152 | # Cleaning
|
---|
| 153 |
|
---|
[9a0367f] | 154 | distclean: clean
|
---|
[cc92076] | 155 | rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
|
---|
[41f7564] | 156 |
|
---|
| 157 | clean:
|
---|
[4e9aaf5] | 158 | rm -fr $(SANDBOX)
|
---|
[e540bc87] | 159 | $(MAKE) -r -C kernel clean
|
---|
| 160 | $(MAKE) -r -C uspace clean
|
---|
| 161 | $(MAKE) -r -C boot clean
|
---|
[7f345cd0] | 162 | $(MAKE) -r -C doxygen clean
|
---|
[a5c468e] | 163 | $(MAKE) -r -C tools/xcw/demo clean
|
---|
[4bc309b] | 164 |
|
---|
[3529fbf0] | 165 | $(ERRNO_HEADER): $(ERRNO_INPUT)
|
---|
| 166 | echo '/* Generated file. Edit errno.in instead. */' > $@.new
|
---|
[10de842] | 167 | sed 's/__errno_entry(\([^,]*\),\([^,]*\),.*/#define \1 __errno_t(\2)/' < $< >> $@.new
|
---|
[3529fbf0] | 168 | mv $@.new $@
|
---|
| 169 |
|
---|
[4bc309b] | 170 | -include Makefile.local
|
---|