Makefile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. # Win32 Debugger (GUI)
  13. #
  14. # Abstract:
  15. #
  16. # This module implements the graphical version of the debugger on Win32
  17. # platforms.
  18. #
  19. # Author:
  20. #
  21. # Evan Green 26-Jul-2012
  22. #
  23. # Environment:
  24. #
  25. # Win32
  26. #
  27. ################################################################################
  28. BINARY = debugui
  29. BINARYTYPE = build
  30. BUILD = yes
  31. BINPLACE = tools/bin
  32. INCLUDES += $(SRCDIR)/../..;
  33. INCLUDES += $(SRCROOT)/os/lib/im;
  34. TARGETLIBS = $(OBJROOT)/os/lib/rtl/base/build/basertl.a \
  35. $(OBJROOT)/os/lib/rtl/urtl/rtlc/build/rtlc.a \
  36. $(OBJROOT)/os/lib/im/build/imu.a \
  37. DYNLIBS = -lpsapi -lws2_32 -lmswsock -ladvapi32 -lshlwapi
  38. EXTRA_LDFLAGS += -mwindows
  39. VPATH += $(SRCDIR)/..:$(SRCDIR)/../..:
  40. include $(SRCDIR)/../../sources
  41. OBJS = $(COMMON_OBJS) \
  42. debugres.rsc \
  43. ntcomm.o \
  44. ntdbgui.o \
  45. ntextsup.o \
  46. ntsock.o \
  47. ntusrdbg.o \
  48. ntusrsup.o \
  49. include $(SRCROOT)/os/minoca.mk