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-09 16:44:04 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-07-09 18:47:31 +0400
commit0e6d0d9f000025df55eb0b5dec97838017b26ac6 (patch)
treec8eaff369cb7be1b7fcd2aec574dff609b469020 /main/external/Makefile.am
parente5ef3f20d437cd9d6ccbf2c09d2e53aa6ecc4567 (diff)
Bump ngit again
Diffstat (limited to 'main/external/Makefile.am')
-rw-r--r--main/external/Makefile.am11
1 files changed, 1 insertions, 10 deletions
diff --git a/main/external/Makefile.am b/main/external/Makefile.am
index 5c204b5f9b..a1883e7f9e 100644
--- a/main/external/Makefile.am
+++ b/main/external/Makefile.am
@@ -1,32 +1,23 @@
TARBALL_PATH=../../tarballs/external
-NGIT_SLN=ngit/ngit.sln
-NGIT=$(NGIT_SLN) /t:NGit
-NGIT_OUTPUT = ngit/bin/
-NGIT_ASSEMBLIES = $(addprefix $(NGIT_OUTPUT), NGit.dll NSch.dll Sharpen.dll Sharpen.Unix.dll)
-NGIT_BINARIES = $(NGIT_ASSEMBLIES) $(addsuffix .mdb, $(NGIT_ASSEMBLIES))
-
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) $(NGIT_BINARIES)
+BINARIES = $(CECIL_BINARIES)
OUTPUT=$(top_builddir)/build/bin
all:
$(MAKE) -C monomac/src
mkdir -p $(OUTPUT)
- xbuild /property:CodePage=65001 $(NGIT)
- xbuild /property:CodePage=65001 ngit/Sharpen.Unix/Sharpen.Unix.csproj
xbuild /property:CodePage=65001 $(CECIL)
for binary in $(BINARIES); do \
rsync -u $$binary $(OUTPUT)/ || exit 1; \
done
clean:
- @if test -f $(NGIT_SLN); then xbuild /property:CodePage=65001 $(NGIT) /t:Clean; fi
@if test -f $(CECIL_SLN); then xbuild /property:CodePage=65001 $(CECIL) /t:Clean; fi
for binary in $(BINARIES); do \
rm -f $(OUTPUT)/`basename $$binary`; \