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

« back to all changes in this revision

Viewing changes to src/addins/GnomePlatform/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
 
 
2
 
ADDIN_BUILD = $(top_builddir)/build/AddIns
3
 
ASSEMBLY = $(ADDIN_BUILD)/GnomePlatform.dll
4
 
 
5
 
DEPS =  \
6
 
        $(top_builddir)/build/bin/MonoDevelop.Core.dll \
7
 
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll
8
 
 
9
 
REFS =  \
10
 
        $(GCONF_SHARP_LIBS) \
11
 
        $(GLIB_SHARP_LIBS) \
12
 
        $(GNOME_SHARP_LIBS) \
13
 
        $(GNOME_VFS_SHARP_LIBS) \
14
 
        $(GTK_SHARP_LIBS) \
15
 
        -r:System
16
 
 
17
 
FILES =  \
18
 
        AssemblyInfo.cs \
19
 
        Gio.cs \
20
 
        GnomePlatform.cs
21
 
 
22
 
RES = GnomePlatform.addin.xml
23
 
 
24
 
if ENABLE_GNOMEPLATFORM
25
 
all: $(ASSEMBLY) $(ASSEMBLY).mdb
26
 
else
27
 
all:
28
 
endif
29
 
 
30
 
dll_config = GnomePlatform.dll.config
31
 
build_dll_config = $(ADDIN_BUILD)/$(dll_config)
32
 
 
33
 
$(build_dll_config): $(srcdir)/$(dll_config)
34
 
        mkdir -p $(ADDIN_BUILD)
35
 
        cp $(srcdir)/$(dll_config) $@
36
 
 
37
 
$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
38
 
        mkdir -p $(ADDIN_BUILD)
39
 
        $(CSC) $(CSC_FLAGS) $(REFS) $(build_deps) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -target:library
40
 
 
41
 
$(ASSEMBLY).mdb: $(ASSEMBLY)
42
 
 
43
 
if ENABLE_GNOMEPLATFORM
44
 
assemblydir = $(MD_ADDIN_DIR)/GnomePlatform
45
 
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb $(build_dll_config)
46
 
endif
47
 
 
48
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(build_dll_config)
49
 
EXTRA_DIST = $(FILES) $(RES) $(dll_config)
50
 
 
51
 
include $(top_srcdir)/Makefile.include
 
1
include $(top_srcdir)/xbuild.include
 
2
 
 
3
if ! ENABLE_GNOMEPLATFORM
 
4
SKIP=y
 
5
endif