source: mainline/boot/Makefile.build@ 493f1be

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 493f1be was c631734, checked in by jzr <zarevucky.jiri@…>, 8 years ago

Mostly cleanup in uspace/Makefile.common.

  • Pass -MP in addition to -MD (also in boot and kernel).
  • Derive SLIBRARY and LSONAME from LIBRARY and (new)SOVERSION.
  • Removed include of version "makefile", which was unused.
  • Replaced OUTPUT and LOUTPUT with plural OUTPUTS, updated rules to match.
  • Moved things around so that first rule is after last variable assignment.
  • Removed '-n'(undesirable) and '-M'(redundant) from linker options.
  • Removed redundant rules at the tail of the file. GNU make bug #26893 seems to have been fixed years ago, and I can't reproduce any problem.
  • Property mode set to 100644
File size: 3.8 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.PHONY: all clean depend
30
31include Makefile.common
32
33INCLUDES = -Igeneric/include -Iarch/$(KARCH)/include -Igenarch/include -I$(ROOT_PATH)/abi/include
34OPTIMIZATION = 3
35
36DEFS = -DBOOT -DRELEASE=$(RELEASE) "-DCOPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__
37
38AFLAGS =
39LFLAGS = --fatal-warnings --warn-common
40
41# FIXME: This condition is a workaround for issue #693.
42ifneq ($(BARCH),mips32)
43 AFLAGS += --fatal-warnings
44endif
45
46COMMON_CFLAGS = $(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
47 -ffreestanding -fno-builtin -nostdlib -nostdinc \
48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common \
49 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=.
50
51GCC_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
52 -std=gnu99 -Werror-implicit-function-declaration -Wwrite-strings \
53 -pipe
54
55CLANG_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
56 -Werror-implicit-function-declaration -Wwrite-strings \
57 -pipe -fno-stack-protector -fno-PIC
58
59ifeq ($(CONFIG_DEBUG),y)
60 COMMON_CFLAGS += -Werror
61endif
62
63ifeq ($(CONFIG_LINE_DEBUG),y)
64 COMMON_CFLAGS += -g
65endif
66
67ifeq ($(COMPILER),clang)
68 CFLAGS = $(COMMON_CFLAGS) $(CLANG_CFLAGS) $(EXTRA_CFLAGS)
69else
70 CFLAGS = $(COMMON_CFLAGS) $(GCC_CFLAGS) $(EXTRA_CFLAGS)
71endif
72
73OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
74DEPENDS := $(addsuffix .d,$(basename $(SOURCES)))
75
76all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(BOOT_OUTPUT)
77
78clean:
79 rm -f $(RAW) $(MAP)
80
81-include $(DEPENDS)
82
83AS_CFLAGS := $(addprefix -Xassembler ,$(AFLAGS))
84
85$(BOOT_OUTPUT): $(RAW)
86 $(OBJCOPY) -O $(BFD_OUTPUT) $< $@
87
88$(RAW): $(OBJECTS) $(LINK)
89 $(LD) -n $(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(OBJECTS)
90
91$(LINK): | depend
92 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $(LINK).in | grep -v "^\#" > $(LINK)
93
94%.o: %.s | depend
95 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(AS_CFLAGS) -D__ASM__
96
97%.o: %.S | depend
98 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(AS_CFLAGS) -D__ASM__
99
100%.o: %.c | depend
101 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS)
102
103depend: $(PRE_DEPEND)
104
105$(COMPS).s: $(COMPS).zip
106 unzip -p $< $@ > $@
107
108$(COMPS).h: $(COMPS).zip
109 unzip -p $< $@ > $@
110
111$(COMPS)_desc.c: $(COMPS).zip
112 unzip -p $< $@ > $@
113
114$(COMPONENTS_DEFLATE): $(COMPS).zip
115 unzip -p $< $@ > $@
116
117$(COMPS).zip: $(COMPONENTS)
118 $(MKARRAY) --deflate $(COMPS) $(COMP) "$(AS_PROLOG)" ".section .components, \"a\"" $^
119
120include Makefile.initrd
121
Note: See TracBrowser for help on using the repository browser.