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
132 srv
/hid
/isdv4_tablet \
136 srv
/hw
/char
/s3c24xx_uart \
146 drv
/bus
/adb
/cuda_adb \
148 drv
/bus
/pci
/pciintel \
152 drv
/bus
/usb
/usbflbk \
162 drv
/fb
/amdm37x_dispc \
179 drv
/platform
/amdm37x \
192 ## sun4u driver won't compile on 32-bit targets
193 ifeq ($(UARCH
),sparc64
)
198 ## Dynamic linking tests
200 ifeq ($(CONFIG_BUILD_SHARED_LIBS
),y
)
250 BASE_BUILDS
:= $(addsuffix .build
,$(BASE_LIBS
))
251 BUILDS
:= $(addsuffix .build
,$(DIRS
) $(LIBS
))
252 BUILDS_TESTS
:= $(addsuffix .build-test
,$(DIRS
) $(LIBS
) $(BASE_LIBS
))
253 DEPS
= $(addsuffix /deps.mk
,$(DIRS
) $(LIBS
))
254 CLEANS
:= $(addsuffix .
clean,$(DIRS
) $(LIBS
) $(BASE_LIBS
))
256 .PHONY
: all $(BASE_BUILDS
) $(BUILDS
) $(BUILDS_TESTS
) $(CLEANS
) clean
258 all: $(BUILDS
) $(BUILDS_TESTS
)
260 $(BUILDS_TESTS
): $(BASE_BUILDS
) $(BUILDS
)
261 $(MAKE
) -r
-C
$(basename $@
) all-test PRECHECK
=$(PRECHECK
)
264 find lib app drv srv
-name
'*.o' -follow
-exec
rm \
{\
} \
;
265 find lib app drv srv
-name
'*.lo' -follow
-exec
rm \
{\
} \
;
266 find lib app drv srv
-name
'*.d' -follow
-exec
rm \
{\
} \
;
269 -$(MAKE
) -r
-C
$(basename $@
) fasterclean
271 $(BASE_BUILDS
) $(BUILDS
):
272 $(MAKE
) -r
-C
$(basename $@
) all PRECHECK
=$(PRECHECK
)
274 $(DEPS
): %/deps.mk
: %/Makefile
275 $(MAKE
) -r
-C
$(@D
) deps.mk SELF_TARGET
="$(@D).build"
277 # Special case for base libraries.
278 lib
/c.build
: lib
/softfloat.build lib
/softint.build
280 $(BUILDS
): $(BASE_BUILDS
)