Makefile 627 B

1234567891011121314151617181920212223242526272829303132333435
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Module Name:
  6. #
  7. # Special
  8. #
  9. # Abstract:
  10. #
  11. # This module implements a special file driver that implements devices
  12. # like null, zero, and full.
  13. #
  14. # Author:
  15. #
  16. # Evan Green 23-Sep-2013
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = special.drv
  24. BINARYTYPE = so
  25. BINPLACE = bin
  26. OBJS = special.o \
  27. DYNLIBS = $(BINROOT)/kernel \
  28. include $(SRCROOT)/os/minoca.mk