diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-08 13:45:03 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-08 13:45:03 +0000 |
commit | 6986358341072299b5debb7fb29d183b1993b259 (patch) | |
tree | c18b05985af80a070af93d4c4c33886639298aaf /payloads/libpayload/libc | |
parent | fef915c7c4540ffb890c20d4db0e71ac69175652 (diff) | |
download | coreboot-6986358341072299b5debb7fb29d183b1993b259.tar.xz |
new menu structure for libpayload
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3488 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/libc')
-rw-r--r-- | payloads/libpayload/libc/Makefile.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/payloads/libpayload/libc/Makefile.inc b/payloads/libpayload/libc/Makefile.inc index 9b7a4d6d25..bc82c9bc39 100644 --- a/payloads/libpayload/libc/Makefile.inc +++ b/payloads/libpayload/libc/Makefile.inc @@ -2,6 +2,7 @@ ## This file is part of the libpayload project. ## ## Copyright (C) 2008 Advanced Micro Devices, Inc. +## Copyright (C) 2008 coresystems GmbH ## ## Redistribution and use in source and binary forms, with or without ## modification, are permitted provided that the following conditions @@ -27,6 +28,6 @@ ## SUCH DAMAGE. ## -TARGETS-y += libc/malloc.o libc/printf.o libc/console.o libc/string.o -TARGETS-y += libc/memory.o libc/ctype.o libc/ipchecksum.o libc/lib.o -TARGETS-y += libc/rand.o libc/time.o libc/lar.o libc/exec.o +TARGETS-$(CONFIG_LIBC) += libc/malloc.o libc/printf.o libc/console.o libc/string.o +TARGETS-$(CONFIG_LIBC) += libc/memory.o libc/ctype.o libc/ipchecksum.o libc/lib.o +TARGETS-$(CONFIG_LIBC) += libc/rand.o libc/time.o libc/lar.o libc/exec.o |