Signed-off-by: Robert Millan <rmh@aybabtu.com>
[coreboot.git] / payloads / libpayload / Makefile
1 ##
2 ## This file is part of the libpayload project.
3 ##
4 ## Copyright (C) 2008 Advanced Micro Devices, Inc.
5 ## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
6 ##
7 ## Redistribution and use in source and binary forms, with or without
8 ## modification, are permitted provided that the following conditions
9 ## are met:
10 ## 1. Redistributions of source code must retain the above copyright
11 ##    notice, this list of conditions and the following disclaimer.
12 ## 2. 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 ## 3. 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 AND CONTRIBUTORS ``AS IS'' AND
19 ## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 ## ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 ## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 ## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 ## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 ## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 ## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 ## SUCH DAMAGE.
29 ##
30
31 export src := $(shell pwd)
32 export srctree := $(src)
33 export srck := $(src)/util/kconfig
34 export obj := $(src)/build
35 export objk := $(src)/build/util/kconfig
36
37 export KERNELVERSION      := 0.1.0
38 export KCONFIG_AUTOHEADER := $(obj)/config.h
39 export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
40
41 CONFIG_SHELL := sh
42 KBUILD_DEFCONFIG := configs/defconfig
43 UNAME_RELEASE := $(shell uname -r)
44 HAVE_DOTCONFIG := $(wildcard .config)
45 MAKEFLAGS += -rR --no-print-directory
46
47 # Make is silent per default, but 'make V=1' will show all compiler calls.
48 ifneq ($(V),1)
49 Q := @
50 endif
51
52 CC = gcc
53 HOSTCC = gcc
54 HOSTCXX = g++
55 HOSTCFLAGS := -I$(srck) -I$(objk)
56 HOSTCXXFLAGS := -I$(srck) -I$(objk)
57
58 DESTDIR = /opt
59
60 DOXYGEN := doxygen
61 DOXYGEN_OUTPUT_DIR := doxygen
62
63 ifeq ($(strip $(HAVE_DOTCONFIG)),)
64
65 all: config
66
67 else
68
69 include $(src)/.config
70
71 ARCHDIR-$(CONFIG_TARGET_I386) := i386
72
73 PLATFORM-y += $(ARCHDIR-y)/Makefile.inc
74 TARGETS-y :=
75
76 BUILD-y := crypto/Makefile.inc libc/Makefile.inc drivers/Makefile.inc
77 BUILD-$(CONFIG_TINYCURSES) += curses/Makefile.inc
78
79 # The primary target needs to be here before we include the
80 # other files
81
82 all: lib
83
84 include $(PLATFORM-y) $(BUILD-y)
85
86 OBJS     := $(patsubst %,$(obj)/%,$(TARGETS-y))
87 INCLUDES := -Iinclude -Ibuild
88 INCLUDES += -I$(shell $(CC) -print-search-dirs | head -n 1 | cut -d' ' -f2)include
89
90 try-run= $(shell set -e; \
91 TMP=".$$$$.tmp"; \
92 if ($(1)) > /dev/null 2>&1; \
93 then echo "$(2)"; \
94 else echo "$(3)"; \
95 fi; rm -rf "$$TMP")
96
97 cc-option= $(call try-run,\
98 $(CC) $(1) -S -xc /dev/null -o "$$TMP", $(1), $(2))
99
100 STACKPROTECT += $(call cc-option, -fno-stack-protector,)
101
102 # TODO: Re-add -Os as soon as we find out why it caused problems.
103 CFLAGS := -Wall -Werror $(STACKPROTECT) -nostdinc $(INCLUDES) -ffreestanding
104
105 all: lib
106
107 lib: $(obj)/lib/libpayload.a copystuff
108
109 # Copy libpayload.a and head.o into $(src)/lib where lpgcc et al expect them.
110 copystuff: $(obj)/$(ARCHDIR-y)/head.S.o $(obj)/lib/libpayload.a
111         $(Q)cp $(obj)/$(ARCHDIR-y)/head.S.o $(src)/lib/$(ARCHDIR-y)/head.o
112         $(Q)cp $(obj)/lib/libpayload.a $(src)/lib
113
114 $(obj)/lib/libpayload.a: $(OBJS) prepare
115         $(Q)printf "  AR      $(subst $(shell pwd)/,,$(@))\n"
116         $(Q)$(AR) rc $@ $(OBJS)
117
118 endif
119
120 install: lib
121         $(Q)printf "  INSTALL $(DESTDIR)/libpayload/lib\n"
122         $(Q)install -m 755 -d $(DESTDIR)/libpayload/lib
123         $(Q)cp -r lib/* $(DESTDIR)/libpayload/lib/
124         $(Q)printf "  INSTALL $(DESTDIR)/libpayload/include\n"
125         $(Q)install -m 755 -d $(DESTDIR)/libpayload/include
126         $(Q)for file in `find include -name *.h -type f`; do \
127                 install -m 755 -d $(DESTDIR)/libpayload/`dirname $$file`; \
128                 install -m 644 $$file $(DESTDIR)/libpayload/$$file; \
129         done
130         $(Q)printf "  INSTALL $(DESTDIR)/libpayload/bin\n"
131         $(Q)install -m 755 -d $(DESTDIR)/libpayload/bin
132         $(Q)install -m 755 bin/lpgcc $(DESTDIR)/libpayload/bin
133         $(Q)install -m 755 bin/lpas $(DESTDIR)/libpayload/bin
134         $(Q)install -m 644 bin/lp.functions $(DESTDIR)/libpayload/bin
135         $(Q)install -m 644 $(KCONFIG_AUTOHEADER) $(DESTDIR)/libpayload/include/libpayload-config.h
136         $(Q)install -m 644 $(KCONFIG_AUTOCONFIG) $(DESTDIR)/libpayload/libpayload.config
137
138 prepare:
139         $(Q)mkdir -p $(obj)/util/kconfig/lxdialog
140         $(Q)mkdir -p $(obj)/crypto $(obj)/curses $(obj)/drivers/video
141         $(Q)mkdir -p $(obj)/drivers/usb
142         $(Q)mkdir -p $(obj)/i386 $(obj)/lib/$(ARCHDIR-y) $(obj)/libc 
143         $(Q)mkdir -p $(src)/lib/$(ARCHDIR-y)
144
145 doxy: doxygen
146 doxygen:
147         $(Q)$(DOXYGEN) Doxyfile
148
149 doxyclean: doxygen-clean
150 doxygen-clean:
151         $(Q)rm -rf $(DOXYGEN_OUTPUT_DIR)
152
153 clean: doxygen-clean
154         $(Q)rm -rf $(obj)/crypto $(obj)/curses $(obj)/drivers
155         $(Q)rm -rf $(obj)/i386 $(obj)/lib $(obj)/libc 
156         $(Q)rm -rf $(src)/lib/i386 $(src)/lib/libpayload.a
157
158 distclean: clean
159         $(Q)rm -rf build
160         $(Q)rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig*
161
162 # This include must come _before_ the pattern rules below!
163 # Order _does_ matter for pattern rules.
164 include util/kconfig/Makefile
165
166 ifeq ($(strip $(HAVE_DOTCONFIG)),)
167 else
168
169 $(obj)/%.o: $(src)/%.c
170         $(Q)printf "  CC      $(subst $(shell pwd)/,,$(@))\n"
171         $(Q)$(CC) -m32 $(CFLAGS) -c -o $@ $<
172
173 $(obj)/%.S.o: $(src)/%.S
174         $(Q)printf "  CC      $(subst $(shell pwd)/,,$(@))\n"
175         $(Q)$(CC) -m32 $(CFLAGS) -c -o $@ $<
176
177 endif
178
179 .PHONY: $(PHONY) prepare clean distclean doxygen doxy
180