~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/tools/mdcrashlog/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BINDIR=$(top_builddir)/build/bin
2
 
 
3
 
ASSEMBLY=$(BINDIR)/MonoDevelop.CrashLog.dll
4
 
PROJECT=MonoDevelop.CrashLog.csproj
5
 
 
6
 
REFS =  \
7
 
        /r:System \
8
 
        /r:System.Web \
9
 
        /r:System.Xml
10
 
 
11
 
FILES =  \
12
 
        AssemblyInfo.cs \
13
 
        CrashLogOptions.cs \
14
 
        MonoDevelop.SessionLogging/ISessionLogger.cs
15
 
 
16
 
DEPS =  \
17
 
        $(top_builddir)/build/bin/MonoDevelop.Core.dll \
18
 
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll
19
 
 
20
 
all: $(ASSEMBLY)
21
 
 
22
 
$(ASSEMBLY): $(build_sources) $(DEPS) $(srcdir)/$(PROJECT)
23
 
        mkdir -p $(BINDIR)
24
 
        $(CSC) $(CSC_FLAGS) -target:library -debug $(build_sources) $(REFS) $(build_deps) /out:$(ASSEMBLY)
25
 
 
26
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
27
 
 
28
 
EXTRA_DIST = \
29
 
        $(FILES) \
30
 
        $(PROJECT)
31
 
 
32
 
include $(top_srcdir)/Makefile.include
 
 
b'\\ No newline at end of file'