Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. # mingen
  13. #
  14. # Abstract:
  15. #
  16. # This executable implements the Minoca build generator.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 3-Dec-2015
  21. #
  22. # Environment:
  23. #
  24. # Build
  25. #
  26. ################################################################################
  27. BINARY = mingen
  28. BINPLACE = bin
  29. BINARYTYPE = app
  30. INCLUDES += $(SRCROOT)/os/apps/libc/include; \
  31. $(SRCROOT)/os/apps/lib/chalk; \
  32. include $(SRCDIR)/sources
  33. OBJS += uos.o
  34. TARGETLIBS = $(OBJROOT)/os/apps/lib/chalk/chalk.a \
  35. $(OBJROOT)/os/lib/yy/yy.a \
  36. $(OBJROOT)/os/lib/rtl/rtlc/rtlc.a \
  37. $(OBJROOT)/os/lib/rtl/base/basertl.a \
  38. DIRS = build
  39. include $(SRCROOT)/os/minoca.mk