blob: 5d834b7d87eacdb08432773f6d40177a6f0a3cbc [file] [log] [blame]
Kevin O'Connor14458432009-05-23 18:21:18 -04001# SeaBIOS build system
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05002#
Kevin O'Connor36feea92012-02-11 10:49:45 -05003# Copyright (C) 2008-2012 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05004#
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05005# This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05006
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -04007# Program version
Kevin O'Connor1fa4adc2011-10-04 21:43:37 -04008VERSION=pre-1.6.4-$(shell date +"%Y%m%d_%H%M%S")-$(shell hostname)
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -04009
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050010# Output directory
11OUT=out/
12
13# Source files
Kevin O'Connord2deae22011-10-01 10:43:48 -040014SRCBOTH=misc.c stacks.c pmm.c output.c util.c block.c floppy.c ata.c mouse.c \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050015 kbd.c pci.c serial.c clock.c pic.c cdrom.c ps2port.c smp.c resume.c \
16 pnpbios.c pirtable.c vgahooks.c ramdisk.c pcibios.c blockcmd.c \
17 usb.c usb-uhci.c usb-ohci.c usb-ehci.c usb-hid.c usb-msc.c \
18 virtio-ring.c virtio-pci.c virtio-blk.c apm.c ahci.c
Kevin O'Connor244caf82010-09-15 21:48:16 -040019SRC16=$(SRCBOTH) system.c disk.c font.c
Kevin O'Connor52a300f2009-12-26 23:32:57 -050020SRC32FLAT=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050021 acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c \
22 lzmadecode.c bootsplash.c jpeg.c usb-hub.c paravirt.c \
23 biostables.c xen.c bmp.c
Kevin O'Connor9c447c32010-05-23 10:24:22 -040024SRC32SEG=util.c output.c pci.c pcibios.c apm.c stacks.c
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050025
Kevin O'Connor36feea92012-02-11 10:49:45 -050026# Default compiler flags
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050027cc-option=$(shell if test -z "`$(1) $(2) -S -o /dev/null -xc /dev/null 2>&1`" \
28 ; then echo "$(2)"; else echo "$(3)"; fi ;)
Kevin O'Connor786502d2008-02-27 10:41:41 -050029
Kevin O'Connor36feea92012-02-11 10:49:45 -050030COMMONCFLAGS = -I$(OUT) -Os -MD -g \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050031 -Wall -Wno-strict-aliasing -Wold-style-definition \
32 $(call cc-option,$(CC),-Wtype-limits,) \
33 -m32 -march=i386 -mregparm=3 -mpreferred-stack-boundary=2 \
34 -mrtd -minline-all-stringops \
Kevin O'Connor9887ecb2011-12-18 10:51:19 -050035 -freg-struct-return -ffreestanding -fno-delete-null-pointer-checks \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050036 -ffunction-sections -fdata-sections -fno-common
Kevin O'Connor786502d2008-02-27 10:41:41 -050037COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
38COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
39COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
40
Kevin O'Connor36feea92012-02-11 10:49:45 -050041CFLAGS32FLAT = $(COMMONCFLAGS) -DMODE16=0 -DMODESEGMENT=0 -fomit-frame-pointer
Kevin O'Connor871e0a02009-12-30 12:14:53 -050042CFLAGSSEG = $(COMMONCFLAGS) -DMODESEGMENT=1 -fno-defer-pop \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050043 $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \
44 $(call cc-option,$(CC),-fno-tree-switch-conversion,)
Kevin O'Connor36feea92012-02-11 10:49:45 -050045CFLAGS32SEG = $(CFLAGSSEG) -DMODE16=0 -fomit-frame-pointer
46CFLAGS16INC = $(CFLAGSSEG) -DMODE16=1 -Wa,src/code16gcc.s \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050047 $(call cc-option,$(CC),--param large-stack-frame=4,-fno-inline)
Kevin O'Connor36feea92012-02-11 10:49:45 -050048CFLAGS16 = $(CFLAGS16INC) -fomit-frame-pointer
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050049
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050050# Run with "make V=1" to see the actual compile commands
51ifdef V
52Q=
53else
54Q=@
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -050055MAKEFLAGS += --no-print-directory
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050056endif
57
Kevin O'Connora7fc8152012-01-15 01:52:27 -050058# Common command definitions
59export HOSTCC := $(CC)
60export CONFIG_SHELL := sh
61export KCONFIG_AUTOHEADER := autoconf.h
62export KCONFIG_CONFIG := $(CURDIR)/.config
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050063OBJCOPY=objcopy
Kevin O'Connor202024a2009-01-17 10:41:28 -050064OBJDUMP=objdump
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050065STRIP=strip
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -050066PYTHON=python
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050067
Kevin O'Connora7fc8152012-01-15 01:52:27 -050068# Default targets
69-include $(KCONFIG_CONFIG)
70
71target-y = $(OUT) $(OUT)bios.bin
72target-$(CONFIG_BUILD_VGABIOS) += $(OUT)vgabios.bin
73
74all: $(target-y)
75
76# Make definitions
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -050077.PHONY : all clean distclean FORCE
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050078
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040079vpath %.c src vgasrc
80vpath %.S src vgasrc
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050081
Kevin O'Connor36feea92012-02-11 10:49:45 -050082
83################ Common build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -050084
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040085# Verify the gcc configuration and test if -fwhole-program works.
Kevin O'Connor626416e2011-05-21 21:05:04 -040086TESTGCC:=$(shell CC="$(CC)" LD="$(LD)" tools/test-gcc.sh)
Kevin O'Connor03f630e2009-03-26 20:45:36 -040087ifeq "$(TESTGCC)" "-1"
Kevin O'Connor626416e2011-05-21 21:05:04 -040088$(error "Please upgrade GCC and/or binutils")
Kevin O'Connor03f630e2009-03-26 20:45:36 -040089endif
90
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040091ifndef COMPSTRAT
92COMPSTRAT=$(TESTGCC)
Kevin O'Connor231f7102009-01-25 16:11:27 -050093endif
94
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040095# Do a whole file compile - three methods are supported.
96ifeq "$(COMPSTRAT)" "1"
97# First method - use -fwhole-program without -combine.
98define whole-compile
99@echo " Compiling whole program $3"
100$(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
101$(Q)$(CC) $1 -fwhole-program -DWHOLE_PROGRAM -c $3.tmp.c -o $3
102endef
Kevin O'Connord82a1ca2009-06-17 20:33:41 -0400103else
104ifeq "$(COMPSTRAT)" "2"
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400105# Second menthod - don't use -fwhole-program at all.
Kevin O'Connor410680b2008-03-02 20:48:35 -0500106define whole-compile
107@echo " Compiling whole program $3"
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500108$(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
Kevin O'Connor410680b2008-03-02 20:48:35 -0500109$(Q)$(CC) $1 -c $3.tmp.c -o $3
110endef
111else
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400112# Third (and preferred) method - use -fwhole-program with -combine
Kevin O'Connor410680b2008-03-02 20:48:35 -0500113define whole-compile
114@echo " Compiling whole program $3"
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400115$(Q)$(CC) $1 -fwhole-program -DWHOLE_PROGRAM -combine -c $2 -o $3
Kevin O'Connor410680b2008-03-02 20:48:35 -0500116endef
117endif
Kevin O'Connord82a1ca2009-06-17 20:33:41 -0400118endif
Kevin O'Connor410680b2008-03-02 20:48:35 -0500119
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400120%.strip.o: %.o
121 @echo " Stripping $@"
122 $(Q)$(STRIP) $< -o $@
Kevin O'Connor410680b2008-03-02 20:48:35 -0500123
Kevin O'Connor30853762009-01-17 18:49:20 -0500124$(OUT)%.s: %.c
Kevin O'Connor9e821222008-12-06 18:56:19 -0500125 @echo " Compiling to assembler $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500126 $(Q)$(CC) $(CFLAGS16) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500127
128$(OUT)%.lds: %.lds.S
Kevin O'Connor9e821222008-12-06 18:56:19 -0500129 @echo " Precompiling $@"
Kevin O'Connord9a8b2d2008-11-16 09:17:02 -0500130 $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500131
Kevin O'Connor36feea92012-02-11 10:49:45 -0500132
133################ Main BIOS build rules
134
Kevin O'Connor713be892011-01-26 21:19:25 -0500135$(OUT)asm-offsets.s: $(OUT)autoconf.h
136
Kevin O'Connor30853762009-01-17 18:49:20 -0500137$(OUT)asm-offsets.h: $(OUT)asm-offsets.s
Kevin O'Connor952974e2008-11-16 18:14:33 -0500138 @echo " Generating offset file $@"
139 $(Q)./tools/gen-offsets.sh $< $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500140
Kevin O'Connor36feea92012-02-11 10:49:45 -0500141$(OUT)ccode16.o: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS16), $(addprefix src/, $(SRC16)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500142
Kevin O'Connor713be892011-01-26 21:19:25 -0500143$(OUT)code32seg.o: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS32SEG), $(addprefix src/, $(SRC32SEG)),$@)
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500144
Kevin O'Connor713be892011-01-26 21:19:25 -0500145$(OUT)ccode32flat.o: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS32FLAT), $(addprefix src/, $(SRC32FLAT)),$@)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400146
Kevin O'Connor36feea92012-02-11 10:49:45 -0500147$(OUT)romlayout.o: romlayout.S $(OUT)asm-offsets.h
Kevin O'Connor9e821222008-12-06 18:56:19 -0500148 @echo " Compiling (16bit) $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500149 $(Q)$(CC) $(CFLAGS16) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500150
Kevin O'Connor36feea92012-02-11 10:49:45 -0500151$(OUT)romlayout16.lds: $(OUT)ccode32flat.o $(OUT)code32seg.o $(OUT)ccode16.o $(OUT)romlayout.o tools/layoutrom.py
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400152 @echo " Building ld scripts (version \"$(VERSION)\")"
153 $(Q)echo 'const char VERSION[] = "$(VERSION)";' > $(OUT)version.c
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500154 $(Q)$(CC) $(CFLAGS32FLAT) -c $(OUT)version.c -o $(OUT)version.o
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500155 $(Q)$(LD) -melf_i386 -r $(OUT)ccode32flat.o $(OUT)version.o -o $(OUT)code32flat.o
Kevin O'Connor36feea92012-02-11 10:49:45 -0500156 $(Q)$(LD) -melf_i386 -r $(OUT)ccode16.o $(OUT)romlayout.o -o $(OUT)code16.o
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500157 $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500158 $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump
Kevin O'Connore6caca82009-07-13 20:31:35 -0400159 $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -0500160 $(Q)$(PYTHON) ./tools/layoutrom.py $(OUT)code16.o.objdump $(OUT)code32seg.o.objdump $(OUT)code32flat.o.objdump $(OUT)romlayout16.lds $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds
Kevin O'Connor202024a2009-01-17 10:41:28 -0500161
Stefan Reinauer32aa9f32011-01-27 18:39:01 -0800162# These are actually built by tools/layoutrom.py above, but by pulling them
163# into an extra rule we prevent make -j from spawning layoutrom.py 4 times.
Kevin O'Connor36feea92012-02-11 10:49:45 -0500164$(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds $(OUT)code32flat.o $(OUT)code16.o: $(OUT)romlayout16.lds
Kevin O'Connor202024a2009-01-17 10:41:28 -0500165
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400166$(OUT)rom16.o: $(OUT)code16.o $(OUT)romlayout16.lds
167 @echo " Linking $@"
168 $(Q)$(LD) -T $(OUT)romlayout16.lds $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500169
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500170$(OUT)rom32seg.o: $(OUT)code32seg.o $(OUT)romlayout32seg.lds
Kevin O'Connor114592f2009-09-28 21:32:08 -0400171 @echo " Linking $@"
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400172 $(Q)$(LD) -T $(OUT)romlayout32seg.lds $< -o $@
173
174$(OUT)rom.o: $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o $(OUT)romlayout32flat.lds
175 @echo " Linking $@"
176 $(Q)$(LD) -T $(OUT)romlayout32flat.lds $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500177
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400178$(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o tools/checkrom.py
Kevin O'Connor9bcc5272008-07-05 21:08:56 -0400179 @echo " Prepping $@"
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400180 $(Q)$(OBJDUMP) -thr $< > $<.objdump
181 $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -0500182 $(Q)$(PYTHON) ./tools/checkrom.py $<.objdump $(OUT)bios.bin.raw $(OUT)bios.bin
Kevin O'Connor3a337b22009-11-03 19:50:52 -0500183 $(Q)$(STRIP) -R .comment $< -o $(OUT)bios.bin.elf
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400184
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500185
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400186################ VGA build rules
187
188# VGA src files
Kevin O'Connor3471fdb2012-01-14 19:02:43 -0500189SRCVGA=src/output.c src/util.c src/pci.c \
190 vgasrc/vgabios.c vgasrc/vgafb.c vgasrc/vgafonts.c vgasrc/vbe.c \
Kevin O'Connor4ad2d102012-01-14 23:20:05 -0500191 vgasrc/stdvga.c vgasrc/stdvgamodes.c vgasrc/stdvgaio.c \
Kevin O'Connor3471fdb2012-01-14 19:02:43 -0500192 vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodevga.c
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400193
Kevin O'Connor36feea92012-02-11 10:49:45 -0500194CFLAGS16VGA = $(CFLAGS16INC) -Isrc
Kevin O'Connor9887ecb2011-12-18 10:51:19 -0500195
Kevin O'Connor36feea92012-02-11 10:49:45 -0500196$(OUT)vgaccode16.o: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS16VGA), $(SRCVGA),$@)
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400197
Kevin O'Connor36feea92012-02-11 10:49:45 -0500198$(OUT)vgaentry.o: vgaentry.S $(OUT)autoconf.h
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400199 @echo " Compiling (16bit) $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500200 $(Q)$(CC) $(CFLAGS16VGA) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400201
Kevin O'Connor36feea92012-02-11 10:49:45 -0500202$(OUT)vgarom.o: $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgalayout.lds
Kevin O'Connor9d840882012-02-11 11:02:03 -0500203 @echo " Linking $@ (version \"$(VERSION)\")"
204 $(Q)printf '#include "types.h"\nchar VERSION[] VAR16 = "$(VERSION)";' > $(OUT)vgaversion.c
205 $(Q)$(CC) $(CFLAGS16VGA) -c $(OUT)vgaversion.c -o $(OUT)vgaversion.o
206 $(Q)$(LD) --gc-sections -T $(OUT)vgalayout.lds $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgaversion.o -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400207
208$(OUT)vgabios.bin.raw: $(OUT)vgarom.o
209 @echo " Extracting binary $@"
210 $(Q)$(OBJCOPY) -O binary $< $@
211
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400212$(OUT)vgabios.bin: $(OUT)vgabios.bin.raw tools/buildrom.py
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400213 @echo " Finalizing rom $@"
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -0500214 $(Q)$(PYTHON) ./tools/buildrom.py $< $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400215
Kevin O'Connor36feea92012-02-11 10:49:45 -0500216
217################ DSDT build rules
218
Michael S. Tsirkin2597b752011-10-04 15:26:01 +0200219src/%.hex: src/%.dsl ./tools/acpi_extract_preprocess.py ./tools/acpi_extract.py
Kevin O'Connord91f9d42009-10-08 21:57:15 -0400220 @echo "Compiling DSDT"
Michael S. Tsirkin2597b752011-10-04 15:26:01 +0200221 $(Q)cpp -P $< > $(OUT)$*.dsl.i.orig
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -0500222 $(Q)$(PYTHON) ./tools/acpi_extract_preprocess.py $(OUT)$*.dsl.i.orig > $(OUT)$*.dsl.i
Michael S. Tsirkin2597b752011-10-04 15:26:01 +0200223 $(Q)iasl -l -tc -p $(OUT)$* $(OUT)$*.dsl.i
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -0500224 $(Q)$(PYTHON) ./tools/acpi_extract.py $(OUT)$*.lst > $(OUT)$*.off
Michael S. Tsirkin2e55b032011-10-26 23:28:02 +0200225 $(Q)cat $(OUT)$*.off > $@
Isaku Yamahata12cbb432010-06-07 17:19:27 +0900226
Kevin O'Connord91f9d42009-10-08 21:57:15 -0400227
Kevin O'Connor36feea92012-02-11 10:49:45 -0500228################ Kconfig rules
229
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500230define do-kconfig
231$(Q)mkdir -p $(OUT)/tools/kconfig/lxdialog
232$(Q)mkdir -p $(OUT)/include/config
233$(Q)$(MAKE) -C $(OUT) -f $(CURDIR)/tools/kconfig/Makefile srctree=$(CURDIR) src=tools/kconfig obj=tools/kconfig Q=$(Q) Kconfig=$(CURDIR)/src/Kconfig $1
234endef
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500235
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500236$(OUT)autoconf.h : $(KCONFIG_CONFIG) ; $(call do-kconfig, silentoldconfig)
237$(KCONFIG_CONFIG): ; $(call do-kconfig, defconfig)
238%onfig: ; $(call do-kconfig, $@)
239help: ; $(call do-kconfig, $@)
Sebastian Herbsztaba52eb2011-11-24 17:20:36 +0100240
Kevin O'Connor36feea92012-02-11 10:49:45 -0500241
242################ Generic rules
243
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500244clean:
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500245 $(Q)rm -rf $(OUT)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500246
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500247distclean: clean
248 $(Q)rm -f .config .config.old
249
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500250$(OUT):
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500251 $(Q)mkdir $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500252
253-include $(OUT)*.d