~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Debugger/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-10 16:54:48 UTC
  • mfrom: (19.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100910165448-0rybfk25zd4o9431
Tags: 2.4+dfsg-2
* debian/patches/inject_Mono.Debugger.Soft_source.patch,
  debian/patches/use_system_Mono.Debugger.Soft.patch,
  debian/control:
  + Build against system Soft Debugger, since we now have a new
    enough Mono to match MonoDevelop's required API

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
top_srcdir = @top_srcdir@
177
177
ADDIN_BUILD = $(top_builddir)/build/AddIns/MonoDevelop.Debugger
178
178
ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.Debugger.dll
 
179
NUNIT_CONSOLE = `pkg-config --variable=libdir mono-nunit`/mono/2.0/nunit-console.exe
 
180
FIXTURE = /fixture=$(fixture)
179
181
DEPS = \
180
182
        $(top_builddir)/build/bin/Mono.Debugging.dll \
181
183
        $(top_builddir)/build/bin/Mono.TextEditor.dll \
182
 
        $(top_builddir)/build/bin/MonoDevelop.Components.dll \
183
184
        $(top_builddir)/build/bin/MonoDevelop.Core.dll \
184
 
        $(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll \
185
 
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll \
186
 
        $(top_builddir)/build/bin/MonoDevelop.Projects.dll \
187
 
        $(top_builddir)/build/bin/MonoDevelop.Projects.Gui.dll
 
185
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll
188
186
 
189
187
REFS = \
190
188
        $(GLIB_SHARP_LIBS) \
204
202
        gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs \
205
203
        gtk-gui/MonoDevelop.Debugger.BusyEvaluatorDialog.cs \
206
204
        gtk-gui/MonoDevelop.Debugger.DebuggerOptionsPanelWidget.cs \
 
205
        gtk-gui/MonoDevelop.Debugger.ExceptionCaughtDialog.cs \
207
206
        gtk-gui/MonoDevelop.Debugger.ExceptionsDialog.cs \
208
207
        gtk-gui/MonoDevelop.Debugger.ExpressionEvaluatorDialog.cs \
 
208
        gtk-gui/MonoDevelop.Debugger.Viewers.ValueVisualizerDialog.cs \
 
209
        MonoDevelop.Debugger.Visualizer/IValueVisualizer.cs \
 
210
        MonoDevelop.Debugger.Visualizer/PixbufVisualizer.cs \
 
211
        MonoDevelop.Debugger.Visualizer/TextVisualizer.cs \
 
212
        MonoDevelop.Debugger.Visualizer/ValueVisualizerDialog.cs \
209
213
        MonoDevelop.Debugger/AddTracePointDialog.cs \
210
214
        MonoDevelop.Debugger/AttachToProcessDialog.cs \
211
215
        MonoDevelop.Debugger/BreakpointPad.cs \
214
218
        MonoDevelop.Debugger/DebugCommands.cs \
215
219
        MonoDevelop.Debugger/DebugExecutionHandlerFactory.cs \
216
220
        MonoDevelop.Debugger/DebugExecutionModeSet.cs \
 
221
        MonoDevelop.Debugger/DebuggerEngine.cs \
 
222
        MonoDevelop.Debugger/DebuggerEngineExtensionNode.cs \
217
223
        MonoDevelop.Debugger/DebuggerOptionsPanelWidget.cs \
218
224
        MonoDevelop.Debugger/DebuggingService.cs \
219
225
        MonoDevelop.Debugger/DebugTextMarker.cs \
220
226
        MonoDevelop.Debugger/DisassemblyView.cs \
 
227
        MonoDevelop.Debugger/ExceptionCaughtDialog.cs \
221
228
        MonoDevelop.Debugger/ExceptionsDialog.cs \
222
229
        MonoDevelop.Debugger/ExpressionEvaluatorDialog.cs \
 
230
        MonoDevelop.Debugger/ExpressionEvaluatorExtensionNode.cs \
223
231
        MonoDevelop.Debugger/Extensions.cs \
224
232
        MonoDevelop.Debugger/IDebuggerEngine.cs \
225
233
        MonoDevelop.Debugger/ImmediatePad.cs \
227
235
        MonoDevelop.Debugger/LocalsPad.cs \
228
236
        MonoDevelop.Debugger/ObjectValuePad.cs \
229
237
        MonoDevelop.Debugger/ObjectValueTreeView.cs \
 
238
        MonoDevelop.Debugger/PinnedWatch.cs \
 
239
        MonoDevelop.Debugger/PinnedWatchStore.cs \
230
240
        MonoDevelop.Debugger/StackTracePad.cs \
231
241
        MonoDevelop.Debugger/ThreadsPad.cs \
232
242
        MonoDevelop.Debugger/WatchPad.cs
235
245
        gtk-gui/gui.stetic \
236
246
        icons/debug-overlay-16.png \
237
247
        icons/debug-overlay-22.png \
 
248
        icons/debug-overlay-24.png \
238
249
        icons/debug-overlay-32.png \
239
250
        icons/step-into-16.png \
240
251
        icons/step-into-22.png \
453
464
 
454
465
all: $(ASSEMBLY) $(ASSEMBLY).mdb $(DATA_FILE_BUILD)
455
466
 
 
467
test: all
 
468
        if test -n "$(fixture)"; then \
 
469
                fp="-fixture=$(fixture)"; \
 
470
        fi; \
 
471
        $(MD_LAUNCH_SETUP) MONO_PATH=../AddIns/MonoDevelop.Debugger mono --debug $(NUNIT_CONSOLE) -noshadow $(top_builddir)/build/bin/MonoDevelop.Debugger.Tests.dll $$fp
 
472
 
456
473
$(DATA_FILE_BUILD): $(srcdir)$(subst $(ADDIN_BUILD),, $@)
457
474
        mkdir -p $(ADDIN_BUILD)
458
475
        cp $(srcdir)/templates$(subst $(ADDIN_BUILD),,$@) $@