1234567891011121314151617181920212223242526272829303132333435363738394041 |
- ################################################################################
- #
- # Copyright (c) 2015 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information.
- #
- # Module Name:
- #
- # Static pthread
- #
- # Abstract:
- #
- # This module implements functions that must be statically linked for the
- # POSIX thread library.
- #
- # Author:
- #
- # Evan Green 4-May-2015
- #
- # Environment:
- #
- # User Mode C Library
- #
- ################################################################################
- BINARY = libpthread_nonshared.a
- BINARYTYPE = library
- BINPLACE = bin
- OBJS = ptatfork.o \
- INCLUDES += $(SRCROOT)/os/apps/libc/include;
- INCLUDES += $(SRCDIR)/..;$(SRCDIR)/../..;
- include $(SRCROOT)/os/minoca.mk
|