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

« back to all changes in this revision

Viewing changes to src/core/Mono.Debugging/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
ASSEMBLY_BUILD_DIR = $(top_builddir)/build/bin
178
178
ASSEMBLY = $(ASSEMBLY_BUILD_DIR)/Mono.Debugging.dll
 
179
SIGNING_KEY = $(srcdir)/mono.debugging.snk
 
180
DEPS = $(top_builddir)/build/bin/NRefactory.dll
179
181
REFS = \
180
 
        -r:../../../build/bin/NRefactory.dll \
181
182
        -r:System \
182
183
        -r:System.Core \
183
184
        -r:System.Xml
206
207
        Mono.Debugging.Client/DebuggerSessionOptions.cs \
207
208
        Mono.Debugging.Client/DebuggerStartInfo.cs \
208
209
        Mono.Debugging.Client/EvaluationOptions.cs \
 
210
        Mono.Debugging.Client/ExceptionInfo.cs \
 
211
        Mono.Debugging.Client/IExpressionEvaluator.cs \
209
212
        Mono.Debugging.Client/ObjectPath.cs \
210
213
        Mono.Debugging.Client/ObjectValue.cs \
211
214
        Mono.Debugging.Client/ObjectValueFlags.cs \
212
215
        Mono.Debugging.Client/ProcessEventArgs.cs \
213
216
        Mono.Debugging.Client/ProcessInfo.cs \
 
217
        Mono.Debugging.Client/RawValue.cs \
214
218
        Mono.Debugging.Client/SourceLocation.cs \
215
219
        Mono.Debugging.Client/StackFrame.cs \
216
220
        Mono.Debugging.Client/TargetEventArgs.cs \
224
228
        Mono.Debugging.Evaluation/BaseBacktrace.cs \
225
229
        Mono.Debugging.Evaluation/BaseTypeViewSource.cs \
226
230
        Mono.Debugging.Evaluation/EvaluationContext.cs \
 
231
        Mono.Debugging.Evaluation/ExceptionInfoSource.cs \
227
232
        Mono.Debugging.Evaluation/ExpressionEvaluator.cs \
228
233
        Mono.Debugging.Evaluation/FilteredMembersSource.cs \
229
234
        Mono.Debugging.Evaluation/ICollectionAdaptor.cs \
236
241
        Mono.Debugging.Evaluation/ObjectValueAdaptor.cs \
237
242
        Mono.Debugging.Evaluation/RawViewSource.cs \
238
243
        Mono.Debugging.Evaluation/RemoteFrameObject.cs \
 
244
        Mono.Debugging.Evaluation/RemoteRawValue.cs \
239
245
        Mono.Debugging.Evaluation/TimedEvaluator.cs \
240
246
        Mono.Debugging.Evaluation/TimeOutException.cs \
241
247
        Mono.Debugging.Evaluation/TypeValueReference.cs \
246
252
assemblydir = $(MD_ASSEMBLY_DIR)
247
253
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
248
254
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
249
 
EXTRA_DIST = $(FILES) $(RES)
 
255
EXTRA_DIST = $(FILES) $(RES) $(SIGNING_KEY)
250
256
build_deps = $(addprefix -r:, $(DEPS))
251
257
build_sources = $(addprefix $(srcdir)/, $(FILES)) $(GENERATED_FILES)
252
258
build_resources = $(addprefix $(srcdir)/, $(RES))
442
448
 
443
449
all: $(ASSEMBLY) $(ASSEMBLY).mdb
444
450
 
445
 
$(ASSEMBLY): $(build_sources) $(build_resources)
 
451
$(ASSEMBLY): $(build_sources) $(build_resources) $(SIGNING_KEY) $(DEPS)
446
452
        mkdir -p $(ASSEMBLY_BUILD_DIR)
447
 
        $(CSC) $(CSC_FLAGS) -debug -out:$@ -target:library $(REFS) $(build_resources:%=/resource:%) $(build_sources)
 
453
        $(CSC) $(CSC_FLAGS) -debug -out:$@ /keycontainer:$(SIGNING_KEY) -target:library $(REFS) $(build_deps) $(build_resources:%=/resource:%) $(build_sources)
448
454
 
449
455
$(ASSEMBLY).mdb: $(ASSEMBLY)
450
456