Makefile 607 B

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # RTL C
  8. #
  9. # Abstract:
  10. #
  11. # This library contains stub functions to allow the Rtl Library to
  12. # run on top of a standard C library.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 23-Oct-2012
  17. #
  18. # Environment:
  19. #
  20. # User
  21. #
  22. ################################################################################
  23. BINARY = rtlc.a
  24. BINARYTYPE = library
  25. INCLUDES += $(SRCDIR)/..;
  26. OBJS = stubs.o \
  27. DIRS = build
  28. include $(SRCROOT)/os/minoca.mk