Makefile 648 B

12345678910111213141516171819202122232425262728293031
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # ACPI
  8. #
  9. # Abstract:
  10. #
  11. # This library contains minimal support for ACPI in the kernel. It mostly
  12. # marshals firmware tables from the boot environment and makes them
  13. # available in the kernel environment.
  14. #
  15. # Author:
  16. #
  17. # Evan Green 4-Aug-2012
  18. #
  19. # Environment:
  20. #
  21. # Kernel
  22. #
  23. ################################################################################
  24. BINARY = acpi.a
  25. BINARYTYPE = library
  26. OBJS = tables.o \
  27. include $(SRCROOT)/os/minoca.mk