view libgui/link-deps.mk @ 16418:e1d92db3a715

use octave-link instead of hooks for breakpoint set/clear functions * octave-main-thread.cc (dbstop_hook_fcn, dbclear_hook_fcn): Delete. (octave_main_thread::run): Don't install callback functions for debugging breakpoint functions. * debug.cc (dbstop_hook_functions, dbclear_hook_functions): Delete. (Fadd_dbstop_hook, Fremove_dbstop_hook, Fadd_dbclear_hook, Fremove_dbclear_hook): Delete. (bp_table::do_add_breakpoint, bp_table::do_remove_breakpoint, bp_table::do_remove_all_breakpoints_in_file): Use octave_link instead of calling hook functions.
author John W. Eaton <jwe@octave.org>
date Wed, 03 Apr 2013 20:28:44 -0400
parents 5f031158c693
children
line wrap: on
line source

include $(top_srcdir)/libinterp/link-deps.mk

if AMCOND_ENABLE_DYNAMIC_LINKING
  LIBOCTGUI_LINK_DEPS =
else
  LIBOCTGUI_LINK_DEPS = $(DLDFCN_LIBS)
endif

LIBOCTGUI_LINK_DEPS += \
  @QT_LIBS@

LIBOCTGUI_LINK_OPTS = \
  @QT_LDFLAGS@

if AMCOND_LINK_ALL_DEPS
  LIBOCTGUI_LINK_DEPS += $(LIBOCTINTERP_LINK_DEPS)
  LIBOCTGUI_LINK_OPTS += $(LIBOCTINTERP_LINK_OPTS)

  OCTAVE_GUI_LINK_DEPS = $(LIBOCTGUI_LINK_DEPS)
  OCTAVE_GUI_LINK_OPTS = $(LIBOCTGUI_LINK_OPTS)
endif