123456789101112131415161718 |
- # Makefile for uClibc-ng
- #
- # Copyright (C) 2017 Waldemar Brodkorb <wbx@uclibc-ng.org>
- # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- CSRC-y := __syscall_error.c sigaction.c
- SSRC-y := __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S brk.S fork.S \
- syscall.S pipe.S vfork.S clone.S
- CSRC-y += $(addprefix soft-fp/, \
- qp_add.c qp_cmp.c qp_cmpe.c qp_div.c qp_dtoq.c qp_feq.c qp_fge.c \
- qp_fgt.c qp_fle.c qp_flt.c qp_fne.c qp_itoq.c qp_mul.c qp_neg.c \
- qp_qtod.c qp_qtoi.c qp_qtos.c qp_qtoui.c qp_qtoux.c qp_qtox.c \
- qp_sqrt.c qp_stoq.c qp_sub.c qp_uitoq.c qp_uxtoq.c qp_xtoq.c qp_util.c)
- CSRC-$(UCLIBC_HAS_CONTEXT_FUNCS) += makecontext.c
- SSRC-$(UCLIBC_HAS_CONTEXT_FUNCS) += getcontext.S setcontext.S swapcontext.S \
- __start_context.S
|