Revert "Reformat copyright messages"
[helenos.git] / Makefile
blob4984eb2f1c3b1be7c5e78382a0b75218c680df66
2 # Copyright (c) 2006 Martin Decky
3 # All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
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.
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.
29 # Just for this Makefile. Sub-makes will run in parallel if requested.
30 .NOTPARALLEL:
32 CSCOPE = cscope
33 FORMAT = clang-format
34 CHECK = tools/check.sh
35 CONFIG = tools/config.py
36 AUTOTOOL = tools/autotool.py
37 SANDBOX = autotool
39 CONFIG_RULES = HelenOS.config
41 COMMON_MAKEFILE = Makefile.common
42 COMMON_HEADER = common.h
44 CONFIG_MAKEFILE = Makefile.config
45 CONFIG_HEADER = config.h
46 ERRNO_HEADER = abi/include/abi/errno.h
47 ERRNO_INPUT = abi/include/abi/errno.in
49 .PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release common boot kernel uspace
51 all: kernel uspace
52 $(MAKE) -r -C boot PRECHECK=$(PRECHECK)
54 common: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(ERRNO_HEADER)
56 kernel: common
57 $(MAKE) -r -C kernel PRECHECK=$(PRECHECK)
59 uspace: common
60 $(MAKE) -r -C uspace PRECHECK=$(PRECHECK)
62 precheck: clean
63 $(MAKE) -r all PRECHECK=y
65 cscope:
66 find abi kernel boot uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
68 cscope_parts:
69 find abi -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_abi.out
70 find kernel -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_kernel.out
71 find boot -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
72 find uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
74 format:
75 find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
77 doxy:
78 $(MAKE) -r -C doxygen
80 # Pre-integration build check
81 check: $(CHECK)
82 ifdef JOBS
83 $(CHECK) -j $(JOBS)
84 else
85 $(CHECK)
86 endif
88 # Autotool (detects compiler features)
90 autotool $(COMMON_MAKEFILE) $(COMMON_HEADER): $(CONFIG_MAKEFILE) $(AUTOTOOL)
91 $(AUTOTOOL)
92 diff -q $(COMMON_HEADER).new $(COMMON_HEADER) 2> /dev/null; if [ $$? -ne 0 ]; then mv -f $(COMMON_HEADER).new $(COMMON_HEADER); fi
94 # Build-time configuration
96 config_default $(CONFIG_MAKEFILE) $(CONFIG_HEADER): $(CONFIG_RULES)
97 ifeq ($(HANDS_OFF),y)
98 $(CONFIG) $< hands-off $(PROFILE)
99 else
100 $(CONFIG) $< default $(PROFILE)
101 endif
103 config: $(CONFIG_RULES)
104 $(CONFIG) $<
106 random-config: $(CONFIG_RULES)
107 $(CONFIG) $< random
109 # Release files
111 releasefile: all
112 $(MAKE) -r -C release releasefile
114 release:
115 $(MAKE) -r -C release release
117 # Cleaning
119 distclean: clean
120 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
122 clean:
123 rm -fr $(SANDBOX)
124 $(MAKE) -r -C kernel clean
125 $(MAKE) -r -C uspace clean
126 $(MAKE) -r -C boot clean
127 $(MAKE) -r -C doxygen clean
129 $(ERRNO_HEADER): $(ERRNO_INPUT)
130 echo '/* Generated file. Edit errno.in instead. */' > $@.new
131 sed 's/__errno_entry(\([^,]*\),\([^,]*\),.*/#define \1 \2/' < $< >> $@.new
132 mv $@.new $@
134 -include Makefile.local