Makefile 729 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # System Profiler
  8. #
  9. # Abstract:
  10. #
  11. # This library contains the System Profiler, which lends insight into the
  12. # real-time resource usage of the system.
  13. #
  14. # Author:
  15. #
  16. # Chris Stevens 1-Jul-2013
  17. #
  18. # Environment:
  19. #
  20. # Kernel
  21. #
  22. ################################################################################
  23. BINARY = sp.a
  24. BINARYTYPE = library
  25. OBJS = info.o \
  26. profiler.o \
  27. X86_OBJS = x86/archprof.o \
  28. ARMV7_OBJS = armv7/archprof.o \
  29. ARMV6_OBJS = armv7/archprof.o \
  30. EXTRA_SRC_DIRS = x86 armv7
  31. include $(SRCROOT)/os/minoca.mk