Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ################################################################################
  2. #
  3. # Copyright (c) 2012 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. # Disassembler Test
  13. #
  14. # Abstract:
  15. #
  16. # This program is used to test the debugger's disassembler.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 26-Jul-2012
  21. #
  22. # Environment:
  23. #
  24. # Test
  25. #
  26. ################################################################################
  27. BINARY = testdisa
  28. BINARYTYPE = build
  29. BUILD = yes
  30. BINPLACE = testbin
  31. TARGETLIBS = $(OBJROOT)/os/lib/rtl/base/build/basertl.a \
  32. $(OBJROOT)/os/lib/rtl/urtl/rtlc/build/rtlc.a \
  33. $(OBJROOT)/os/lib/im/build/imu.a \
  34. VPATH += $(SRCDIR)/..:
  35. OBJS = testdisa.o \
  36. x86dis.o \
  37. armdis.o \
  38. disasm.o \
  39. thmdis.o \
  40. thm32dis.o \
  41. X86_OBJS = testdata.o \
  42. include $(SRCROOT)/os/minoca.mk