Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 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. # Module Name:
  11. #
  12. # Kernel Test Driver
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the kernel driver portion of the kernel test.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 5-Nov-2013
  21. #
  22. # Environment:
  23. #
  24. # Kernel Mode
  25. #
  26. ################################################################################
  27. BINARY = ktestdrv.drv
  28. BINARYTYPE = driver
  29. BINPLACE = bin
  30. INCLUDES += $(SRCDIR)/..;
  31. OBJS = ktestdrv.o \
  32. tblock.o \
  33. tdesc.o \
  34. testsup.o \
  35. tpool.o \
  36. tthread.o \
  37. twork.o \
  38. DYNLIBS = $(BINROOT)/kernel \
  39. include $(SRCROOT)/os/minoca.mk