Makefile 582 B

12345678910111213141516171819202122232425262728293031323334
  1. ################################################################################
  2. #
  3. # Copyright (c) 2016 Minoca Corp. All Rights Reserved
  4. #
  5. # Binary Name:
  6. #
  7. # Async IO Test
  8. #
  9. # Abstract:
  10. #
  11. # This executable implements the asynchronous I/O test app.
  12. #
  13. # Author:
  14. #
  15. # Evan Green 27-Jun-2016
  16. #
  17. # Environment:
  18. #
  19. # User
  20. #
  21. ################################################################################
  22. BINARY = aiotest
  23. BINPLACE = bin
  24. BINARYTYPE = app
  25. INCLUDES += $(SRCROOT)/os/apps/libc/include;
  26. OBJS = aiotest.o \
  27. include $(SRCROOT)/os/minoca.mk