Makefile 649 B

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # Copyright (c) 2016 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # RK808
  8. #
  9. # Abstract:
  10. #
  11. # This module is the driver for the RK808 Power Management IC used in
  12. # platforms like the ASUS C201 Chromebook (Veyron Speedy).
  13. #
  14. # Author:
  15. #
  16. # Evan Green 4-Apr-2016
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = rk808.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. OBJS = rk808.o \
  27. DYNLIBS = $(BINROOT)/kernel \
  28. include $(SRCROOT)/os/minoca.mk