Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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
  13. #
  14. # Abstract:
  15. #
  16. # This executable implements the performance benchmark test application.
  17. #
  18. # Author:
  19. #
  20. # Chris Stevens 27-Apr-2015
  21. #
  22. # Environment:
  23. #
  24. # User Mode
  25. #
  26. ################################################################################
  27. BINARY = perftest
  28. BINPLACE = bin
  29. BINARYTYPE = app
  30. INCLUDES += $(SRCROOT)/os/apps/libc/include;
  31. OBJS = copy.o \
  32. create.o \
  33. dlopen.o \
  34. dup.o \
  35. getppid.o \
  36. exec.o \
  37. fork.o \
  38. malloc.o \
  39. mmap.o \
  40. mutex.o \
  41. open.o \
  42. perfsup.o \
  43. perftest.o \
  44. pipeio.o \
  45. pthread.o \
  46. read.o \
  47. rename.o \
  48. stat.o \
  49. write.o \
  50. DYNLIBS = -lminocaos
  51. DIRS = perflib
  52. include $(SRCROOT)/os/minoca.mk