Makefile 921 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 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. # Binary Name:
  11. #
  12. # Object Manager
  13. #
  14. # Abstract:
  15. #
  16. # This library contains the Object Manager. It maintains a global
  17. # file-system like hierarchy of objects used by many other kernel
  18. # components including Mm, Io, Ke and Ps.
  19. #
  20. # Author:
  21. #
  22. # Evan Green 4-Sep-2012
  23. #
  24. # Environment:
  25. #
  26. # Kernel
  27. #
  28. ################################################################################
  29. BINARY = ob.a
  30. BINARYTYPE = klibrary
  31. OBJS = handles.o \
  32. obapi.o
  33. include $(SRCROOT)/os/minoca.mk