| 123456789101112131415161718192021222324 | # 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-y := \	__longjmp.c  brk.c setjmp_aux.c \	pread_write.c sigaction.c _test_and_set.cSSRC-y := bsd-_setjmp.S bsd-setjmp.S setjmp.S syscall.S pipe.S syscall_error.SCSRC-$(UCLIBC_LINUX_SPECIFIC) += cacheflush.c sysmips.cCSRC-$(UCLIBC_HAS_ADVANCED_REALTIME) += posix_fadvise.cCSRC-$(if $(findstring yy,$(UCLIBC_HAS_LFS)$(UCLIBC_HAS_ADVANCED_REALTIME)),y) += posix_fadvise64.cSSRC-$(if $(UCLIBC_HAS_THREADS_NATIVE),,y) += vfork.S clone.SSSRC-$(UCLIBC_HAS_CONTEXT_FUNCS) += makecontext.S setcontext.S getcontext.S \	swapcontext.SASFLAGS-syscall_error.S += -D_LIBC_REENTRANTARCH_HEADERS := sgidefs.h# regdef.h
 |