Makefile 915 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 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. # Binary Name:
  11. #
  12. # Performance Benchmark Test Library
  13. #
  14. # Abstract:
  15. #
  16. # This module implements a stub library for the performance benchmark
  17. # test application.
  18. #
  19. # Author:
  20. #
  21. # Chris Stevens 7-Apr-2015
  22. #
  23. # Environment:
  24. #
  25. # User Mode
  26. #
  27. ################################################################################
  28. BINARY = perflib.so
  29. BINARYTYPE = so
  30. BINPLACE = bin
  31. ENTRY := 0
  32. INCLUDES += $(SRCROOT)/os/apps/libc/include;
  33. OBJS = perflib.o \
  34. include $(SRCROOT)/os/minoca.mk