source: mainline/Makefile@ 94e3a03

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

Try to build a Doxygen reference again.

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