Makefile 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Module Name:
  11. #
  12. # Static pthread
  13. #
  14. # Abstract:
  15. #
  16. # This module implements functions that must be statically linked for the
  17. # POSIX thread library.
  18. #
  19. # Author:
  20. #
  21. # Evan Green 4-May-2015
  22. #
  23. # Environment:
  24. #
  25. # User Mode C Library
  26. #
  27. ################################################################################
  28. BINARY = libpthread_nonshared.a
  29. BINARYTYPE = library
  30. BINPLACE = bin
  31. OBJS = ptatfork.o \
  32. INCLUDES += $(SRCROOT)/os/apps/libc/include;
  33. INCLUDES += $(SRCDIR)/..;$(SRCDIR)/../..;
  34. include $(SRCROOT)/os/minoca.mk