123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # Makefile for uClibc
- #
- # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
- #
- # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- #
- CSRC := brk.c ioperm.c iopl.c mmap.c __syscall_error.c
- ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y)
- CSRC += sigaction.c
- endif
- SSRC := \
- __longjmp.S setjmp.S bsd-setjmp.S \
- bsd-_setjmp.S sigrestorer.S mmap64.S \
- vfork.S clone.S
- ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
- SSRC += libc-aeabi_read_tp.S libc-thumb_atomics.S
- endif
- ifeq ($(UCLIBC_HAS_ADVANCED_REALTIME),y)
- CSRC += posix_fadvise.c posix_fadvise64.c
- endif
- # Is our compiler set up for EABI ?
- IS_EABI:=$(shell $(CC) $(CFLAGS) -x c - -E -dM </dev/null 2>/dev/null \
- |sed -r -e '/^\#[[:space:]]*define[[:space:]]+__ARM_EABI__([[:space:]]+1)?$$/!d; s/.+/y/;' \
- )
- ifeq ($(IS_EABI),y)
- CSRC += aeabi_assert.c aeabi_atexit.c aeabi_errno_addr.c \
- aeabi_localeconv.c aeabi_memclr.c aeabi_memcpy.c \
- aeabi_memmove.c aeabi_memset.c find_exidx.c
- SSRC += syscall-eabi.S
- ARCH_OBJ_FILTEROUT := syscall.c
- ifeq ($(UCLIBC_HAS_WCHAR),y)
- CSRC += aeabi_mb_cur_max.c
- endif
- else
- CSRC += syscall.c
- endif
- ifeq ($(IS_EABI),y)
- libc-static-y += $(ARCH_OUT)/aeabi_lcsts.o $(ARCH_OUT)/aeabi_math.o \
- $(ARCH_OUT)/aeabi_sighandlers.o
- libc-nonshared-y += $(ARCH_OUT)/aeabi_lcsts.os $(ARCH_OUT)/aeabi_math.os \
- $(ARCH_OUT)/aeabi_sighandlers.os
- libc-shared-y += $(ARCH_OUT)/aeabi_unwind_cpp_pr1.os
- endif
|