Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. # DWARF Test
  13. #
  14. # Abstract:
  15. #
  16. # This program is used to test the DWARF symbol parser in isolation.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 2-Dec-2015
  21. #
  22. # Environment:
  23. #
  24. # Test
  25. #
  26. ################################################################################
  27. BINARY = tdwarf
  28. BINARYTYPE = build
  29. BINPLACE = testbin
  30. BUILD = yes
  31. TARGETLIBS = $(OBJROOT)/os/lib/rtl/base/build/basertl.a \
  32. $(OBJROOT)/os/lib/rtl/rtlc/build/rtlc.a \
  33. $(OBJROOT)/os/lib/im/build/im.a \
  34. VPATH += $(SRCDIR)/..:
  35. INCLUDES += $(SRCROOT)/os/lib/im;
  36. OBJS = coff.o \
  37. elf.o \
  38. dwarf.o \
  39. dwexpr.o \
  40. dwframe.o \
  41. dwline.o \
  42. dwread.o \
  43. stabs.o \
  44. symbols.o \
  45. tdwarf.o \
  46. include $(SRCROOT)/os/minoca.mk