2 # Copyright (c) 2005 Martin Decky
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
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.
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.
29 -include ..
/Makefile.common
30 -include ..
/Makefile.config
113 srv
/bd
/part
/guid_part \
114 srv
/bd
/part
/mbr_part \
126 srv
/hid
/isdv4_tablet \
130 srv
/hw
/char
/s3c24xx_uart \
133 drv
/infrastructure
/root \
134 drv
/infrastructure
/rootvirt \
148 drv
/bus
/usb
/usbflbk \
151 drv
/bus
/usb
/usbmast \
159 ## Platform-specific hardware support
162 ifeq ($(UARCH
), $(filter $(UARCH
),amd64 ia32 ia64
))
164 drv
/infrastructure
/rootpc \
165 drv
/bus
/pci
/pciintel \
173 ifeq ($(UARCH
), $(filter $(UARCH
),mips32 mips32eb
))
175 drv
/infrastructure
/rootmalta \
176 drv
/bus
/pci
/pciintel \
180 ifeq ($(UARCH
),ppc32
)
182 drv
/infrastructure
/rootmac \
183 drv
/bus
/pci
/pciintel \
187 ifeq ($(UARCH
),sparc64
)
192 ifeq ($(UARCH
),arm32
)
194 drv
/infrastructure
/rootamdm37x \
233 LIBC_BUILD
= $(addsuffix .build
,$(LIBC
))
234 LIBS_BUILD
= $(addsuffix .build
,$(LIBS
))
235 LIBN_BUILD
= $(addsuffix .build
,$(LIBN
))
236 BUILDS
:= $(addsuffix .build
,$(DIRS
))
238 CLEANS
:= $(addsuffix .
clean,$(DIRS
)) $(addsuffix .
clean,$(LIBN
)) $(addsuffix .
clean,$(LIBS
)) $(addsuffix .
clean,$(LIBC
))
240 .PHONY
: all $(LIBC_BUILD
) $(LIBS_BUILD
) $(LIBN_BUILD
) $(BUILDS
) $(CLEANS
) clean
247 -$(MAKE
) -C
$(basename $@
) clean
249 $(BUILDS
): $(LIBC_BUILD
) $(LIBS_BUILD
) $(LIBN_BUILD
)
250 $(MAKE
) -C
$(basename $@
) all PRECHECK
=$(PRECHECK
)
252 $(LIBN_BUILD
): $(LIBC_BUILD
) $(LIBS_BUILD
)
253 $(MAKE
) -C
$(basename $@
) all PRECHECK
=$(PRECHECK
)
255 $(LIBS_BUILD
): $(LIBC_BUILD
)
256 $(MAKE
) -C
$(basename $@
) all PRECHECK
=$(PRECHECK
)
259 $(MAKE
) -C
$(basename $@
) all PRECHECK
=$(PRECHECK
)