Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2012-07-26 18:40:08 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-07-26 18:40:08 +0400
commit2f9ea8bc4894347467ac169d4f94f44a15b2bb0f (patch)
tree392651e88ec8df7d9207f4973381834411787e5d /main/external/Makefile.am
parent521bed0225940feaafd49ad74a30e003b9a0fe0c (diff)
[build] Don't bother executing xbuild in the externals
These are processed anyway as they are part of Main.sln, so speed up the build by not double-processing these
Diffstat (limited to 'main/external/Makefile.am')
-rw-r--r--main/external/Makefile.am19
1 files changed, 1 insertions, 18 deletions
diff --git a/main/external/Makefile.am b/main/external/Makefile.am
index a1883e7f9e..3386fb90d9 100644
--- a/main/external/Makefile.am
+++ b/main/external/Makefile.am
@@ -1,27 +1,10 @@
TARBALL_PATH=../../tarballs/external
-CECIL_SLN=cecil/Mono.Cecil.sln
-CECIL=/property:Configuration=net_4_0_Debug $(CECIL_SLN)
-CECIL_OUTPUT=cecil/bin/net_4_0_Debug/
-CECIL_ASSEMBLIES = $(addprefix $(CECIL_OUTPUT), Mono.Cecil.dll Mono.Cecil.Mdb.dll)
-CECIL_BINARIES = $(CECIL_ASSEMBLIES) $(addsuffix .mdb, $(CECIL_ASSEMBLIES))
-
-BINARIES = $(CECIL_BINARIES)
-OUTPUT=$(top_builddir)/build/bin
-
all:
$(MAKE) -C monomac/src
- mkdir -p $(OUTPUT)
- xbuild /property:CodePage=65001 $(CECIL)
- for binary in $(BINARIES); do \
- rsync -u $$binary $(OUTPUT)/ || exit 1; \
- done
clean:
- @if test -f $(CECIL_SLN); then xbuild /property:CodePage=65001 $(CECIL) /t:Clean; fi
- for binary in $(BINARIES); do \
- rm -f $(OUTPUT)/`basename $$binary`; \
- done
+ $(MAKE) -C monomac/src clean
install:
uninstall: