Makefile 911 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. # vmstat
  13. #
  14. # Abstract:
  15. #
  16. # This executable implements the vmstat application, which prints current
  17. # information about kernel memory usage.
  18. #
  19. # Author:
  20. #
  21. # Evan Green 5-Mar-2015
  22. #
  23. # Environment:
  24. #
  25. # User
  26. #
  27. ################################################################################
  28. BINARY = vmstat
  29. BINPLACE = bin
  30. BINARYTYPE = app
  31. INCLUDES += $(SRCROOT)/os/apps/libc/include; \
  32. OBJS = vmstat.o \
  33. DYNLIBS = -lminocaos
  34. include $(SRCROOT)/os/minoca.mk