source: mainline/uspace/Makefile.common@ a16210b5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a16210b5 was 2d2b8e6, checked in by Petr Koupy <petr.koupy@…>, 14 years ago

Added basic build infrastructure.

  • Property mode set to 100644
File size: 9.2 KB
RevLine 
[1b1164e8]1#
2# Copyright (c) 2005 Martin Decky
3# Copyright (c) 2007 Jakub Jermar
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9#
10# - Redistributions of source code must retain the above copyright
11# notice, this list of conditions and the following disclaimer.
12# - Redistributions in binary form must reproduce the above copyright
13# notice, this list of conditions and the following disclaimer in the
14# documentation and/or other materials provided with the distribution.
15# - The name of the author may not be used to endorse or promote products
16# derived from this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29
30# Individual makefiles set:
31#
32# USPACE_PREFIX (*) relative path to uspace/ directory
33# SOURCES (*) list of source files
34# LIBS libraries to link with
35# DEFS compiler defines
36# EXTRA_CFLAGS additional flags to pass to C compiler
37# LINKER_SCRIPT linker script
38# PRE_DEPEND targets required for dependency check
39#
40# BINARY (/) binary output name (like appname)
41# LIBRARY (/) library output name (like libname)
[364778b2]42#
[1b1164e8]43# EXTRA_OUTPUT additional output targets
44# EXTRA_CLEAN additional cleanup targets
45#
[2d2b8e6]46# POSIX_COMPAT set to 'y' to use POSIX compatibility layer
47#
[364778b2]48# Optionally, for a binary:
[5b72635]49# STATIC_NEEDED set to 'y' for init binaries, will build statically
50# linked version
[54146a0]51# STATIC_ONLY set to 'y' if binary cannot be linked dynamically
52# (e.g. uses thread-local variables)
[5b72635]53#
[364778b2]54# Optionally, for a libary:
55# SLIBRARY Name with full version, e.g. libfoo.so.0.0
56# LSONAME Soname / name with short version, e.g. libfoo.so.0
57#
[1b1164e8]58# (x) required variables
59# (/) exactly one of the variables must be defined
60#
61
62ROOT_PATH = $(USPACE_PREFIX)/..
63
64VERSION_DEF = $(ROOT_PATH)/version
65
66COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common
67COMMON_HEADER = $(ROOT_PATH)/common.h
68
69CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config
70CONFIG_HEADER = $(ROOT_PATH)/config.h
71
72-include $(VERSION_DEF)
73-include $(COMMON_MAKEFILE)
74-include $(CONFIG_MAKEFILE)
75
76ifneq ($(BINARY),)
77 JOB = $(BINARY).job
78 OUTPUT = $(BINARY)
79 EXTRA_OUTPUT += $(BINARY).disasm
80 EXTRA_CLEAN += $(BINARY).map
81endif
82
83ifneq ($(LIBRARY),)
84 JOB = $(LIBRARY).job
85 OUTPUT = $(LIBRARY).a
86endif
87
[7fb3f1c]88ifeq ($(CONFIG_BUILD_SHARED_LIBS), y)
89 ifneq ($(SLIBRARY),)
90 LARCHIVE = $(LIBRARY).la
91 LOUTPUT = $(SLIBRARY)
[ec883cf]92 EXTRA_OUTPUT += $(LOUTPUT).disasm $(LIBRARY).so $(LSONAME)
[7fb3f1c]93 EXTRA_CLEAN += $(LOUTPUT).map $(LOUTPUT).ldisasm \
[ec883cf]94 $(LIBC_PREFIX)/shared/arch/$(UARCH)/_lib.ld \
95 $(LIBRARY).so $(LSONAME)
[7fb3f1c]96 endif
[143932e3]97endif
98
[1b1164e8]99DEPEND = Makefile.depend
100DEPEND_PREV = $(DEPEND).prev
101
[36a75a2]102LIB_PREFIX = $(USPACE_PREFIX)/lib
[849ed54]103
104LIBC_PREFIX = $(LIB_PREFIX)/c
105LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat
106LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint
107
[2d2b8e6]108LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix
109
[849ed54]110LIBBLOCK_PREFIX = $(LIB_PREFIX)/block
111LIBFS_PREFIX = $(LIB_PREFIX)/fs
[ee7e82a9]112LIBCLUI_PREFIX = $(LIB_PREFIX)/clui
[849ed54]113
[c47e1a8]114LIBDRV_PREFIX = $(LIB_PREFIX)/drv
[f63a591d]115LIBPACKET_PREFIX = $(LIB_PREFIX)/packet
[849ed54]116LIBNET_PREFIX = $(LIB_PREFIX)/net
117
[5b72635]118ifeq ($(STATIC_NEEDED),y)
119 STATIC_BUILD = y
[1d465bf]120else
[54146a0]121 ifeq ($(STATIC_ONLY),y)
[5b72635]122 STATIC_BUILD = y
[54146a0]123 else
124 ifeq ($(CONFIG_USE_SHARED_LIBS), y)
125 STATIC_BUILD = n
126 else
127 STATIC_BUILD = y
128 endif
[5b72635]129 endif
130endif
131
132ifeq ($(STATIC_BUILD), y)
[849ed54]133BASE_LIBS = $(LIBC_PREFIX)/libc.a $(LIBSOFTINT_PREFIX)/libsoftint.a
[1b1164e8]134LINKER_SCRIPT ?= $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld
[5b72635]135else
[042fbe0]136BASE_LIBS = $(LIBC_PREFIX)/libc.so0 $(LIBSOFTINT_PREFIX)/libsofti.so0
[5b72635]137LFLAGS = -Bdynamic
138LINKER_SCRIPT ?= $(LIBC_PREFIX)/arch/$(UARCH)/_link-dlexe.ld
[1d465bf]139endif
[1b1164e8]140
[3c664d6]141ifeq ($(CONFIG_OPTIMIZE_FOR_SIZE),y)
142 OPTIMIZATION = s
143else
144 OPTIMIZATION = 3
145endif
146
[1b1164e8]147.PHONY: all clean
148
[143932e3]149all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(LIBS) $(OUTPUT) $(LOUTPUT) $(EXTRA_OUTPUT)
[1b1164e8]150 -[ -f $(DEPEND) ] && cp -a $(DEPEND) $(DEPEND_PREV)
151
152clean:
[143932e3]153 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(LARCHIVE) $(LOUTPUT) $(EXTRA_OUTPUT) $(EXTRA_CLEAN)
[1b1164e8]154 find . -name '*.o' -follow -exec rm \{\} \;
[143932e3]155 find . -name '*.lo' -follow -exec rm \{\} \;
[1b1164e8]156
157GCC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
158 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
159 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
160 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
[e8c5c11]161 -std=gnu99 -Werror-implicit-function-declaration -Wwrite-strings \
[e805e2f]162 -pipe -g -D__$(ENDIANESS)__
[1b1164e8]163
164ICC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
165 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
166 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
167 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
168 -Werror-implicit-function-declaration -Wwrite-strings \
[e805e2f]169 -pipe -g -D__$(ENDIANESS)__
[1b1164e8]170
171CLANG_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
172 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
173 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
174 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
175 -Werror-implicit-function-declaration -Wwrite-strings \
176 -pipe -g -arch $(CLANG_ARCH) -D__$(ENDIANESS)__
177
[143932e3]178LIB_CFLAGS = $(CFLAGS) -fPIC -D__IN_SHARED_LIBC__
179LIB_LFLAGS = $(LFLAGS) -shared -soname $(LSONAME) --whole-archive
180
[e805e2f]181ifeq ($(CONFIG_DEBUG),y)
182 GCC_CFLAGS += -Werror
183 ICC_CFLAGS += -Werror
184endif
185
[1e00216]186ifeq ($(CONFIG_LINE_DEBUG),y)
187 GCC_CFLAGS += -g
188 ICC_CFLAGS += -g
189 SUNCC_CFLAGS += -g
190 CLANG_CFLAGS += -g
191endif
192
[1b1164e8]193## Setup platform configuration
194#
195
196-include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.common
197
198## Compilation options
199#
200
201JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py
202
[2d2b8e6]203ifeq ($(POSIX_COMPAT),y)
204 CFLAGS = -I$(LIBPOSIX_PREFIX)
205 LIBS += $(LIBPOSIX_PREFIX)/libposix.a
206endif
207
[1b1164e8]208ifeq ($(COMPILER),gcc_cross)
[2d2b8e6]209 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
[1b1164e8]210 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
211endif
212
213ifeq ($(COMPILER),gcc_native)
[2d2b8e6]214 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
[1b1164e8]215 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
216endif
217
218ifeq ($(COMPILER),icc)
[2d2b8e6]219 CFLAGS += $(ICC_CFLAGS) $(EXTRA_CFLAGS)
[1b1164e8]220 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
221endif
222
223ifeq ($(COMPILER),clang)
[2d2b8e6]224 CFLAGS += $(CLANG_CFLAGS) $(EXTRA_CFLAGS)
[1b1164e8]225 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
226endif
227
228-include $(DEPEND)
229
230OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
[143932e3]231LOBJECTS := $(addsuffix .lo,$(basename $(SOURCES)))
[1b1164e8]232
233ifneq ($(BINARY),)
234%.disasm: $(BINARY)
[9ded977]235ifeq ($(CONFIG_LINE_DEBUG),y)
236 $(OBJDUMP) -d -S $< > $@
237else
[1b1164e8]238 $(OBJDUMP) -d $< > $@
[9ded977]239endif
[1b1164e8]240
241$(BINARY): $(LINKER_SCRIPT) $(OBJECTS) $(LIBS) $(BASE_LIBS)
[afdcc60e]242 $(LD) -n $(LFLAGS) -T $(LINKER_SCRIPT) -M -Map $(BINARY).map -o $(BINARY) $(OBJECTS) $(LIBS) $(BASE_LIBS)
[1cb092d]243ifeq ($(CONFIG_STRIP_BINARIES),y)
244 $(STRIP) $(BINARY)
245endif
[1b1164e8]246endif
247
[1d465bf]248ifneq ($(SLIBRARY),)
249%.disasm: $(LOUTPUT)
250ifeq ($(CONFIG_LINE_DEBUG),y)
251 $(OBJDUMP) -d -S $< > $@
252else
253 $(OBJDUMP) -d $< > $@
254endif
255
[729f774f]256$(LOUTPUT): $(LARCHIVE) $(LIBC_PREFIX)/arch/$(UARCH)/_link-shlib.ld
257 $(LD) -T $(LIBC_PREFIX)/arch/$(UARCH)/_link-shlib.ld $(LIB_LFLAGS) $(LARCHIVE) -o $@ -Map $(LOUTPUT).map
[ec883cf]258
259$(LIBRARY).so:
260 ln -s $(SLIBRARY) $@
261
262$(LSONAME):
263 ln -s $(SLIBRARY) $@
[1d465bf]264endif
[143932e3]265
[1b1164e8]266ifneq ($(LIBRARY),)
267%.a: $(OBJECTS)
268 $(AR) rc $@ $(OBJECTS)
269endif
270
[143932e3]271ifneq ($(SLIBRARY),)
272%.la: $(LOBJECTS)
273 $(AR) rc $@ $(LOBJECTS)
274endif
275
[1b1164e8]276%.o: %.S $(DEPEND)
277 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
278ifeq ($(PRECHECK),y)
279 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__
280endif
281
282%.o: %.s $(DEPEND)
283 $(AS) $(AFLAGS) -o $@ $<
284ifeq ($(PRECHECK),y)
285 $(JOBFILE) $(JOB) $< $@ as asm
286endif
287
288%.o: %.c $(DEPEND)
289 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
290ifeq ($(PRECHECK),y)
291 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)
292endif
293
[0e9b512]294%.lo: %.S $(DEPEND)
295 $(CC) $(DEFS) $(LIB_CFLAGS) -D__ASM__ -c $< -o $@
296ifeq ($(PRECHECK),y)
297 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__
298endif
[ec3e2ed]299
[0e9b512]300%.lo: %.s $(DEPEND)
301 $(AS) $(AFLAGS) -o $@ $<
302ifeq ($(PRECHECK),y)
303 $(JOBFILE) $(JOB) $< $@ as asm
304endif
[ec3e2ed]305
[143932e3]306%.lo: %.c $(DEPEND)
307 $(CC) $(DEFS) $(LIB_CFLAGS) -c $< -o $@
308ifeq ($(PRECHECK),y)
309 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)
310endif
311
[1b1164e8]312$(DEPEND): $(PRE_DEPEND)
313 makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(SOURCES) > $@ 2> /dev/null
314 -[ -f $(DEPEND_PREV) ] && diff -q $(DEPEND_PREV) $@ && mv -f $(DEPEND_PREV) $@
[664af708]315
316##
317# This explicit dependecy of the output binary on the object files seems to be
318# necessary to prevent parallel build failures (GNU make bug #26893 ???).
319$(OUTPUT): $(OBJECTS)
320
[143932e3]321$(LARCHIVE): $(LOBJECTS)
Note: See TracBrowser for help on using the repository browser.