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:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2019-01-16 05:53:37 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2019-01-16 05:53:37 +0300
commit78a8f95819f579a96ce1dd8a55c9f5f1a7e9aae5 (patch)
tree9b29dab5aeb30a7ca2a85083a6f00c2434b8d046 /main/external/Makefile.am
parent3f1be30cc19bbefbdd46c4151c2b38f8acf52c6f (diff)
Remove redundant build infrastructure
The old autotools build infrastructure is largely redundant, as projects are now built with msbuild. Remove as much as can be done easily, along with some other obsolete stuff.
Diffstat (limited to 'main/external/Makefile.am')
-rw-r--r--main/external/Makefile.am14
1 files changed, 0 insertions, 14 deletions
diff --git a/main/external/Makefile.am b/main/external/Makefile.am
index 5f5b0641b5..b6e31036ad 100644
--- a/main/external/Makefile.am
+++ b/main/external/Makefile.am
@@ -1,4 +1,3 @@
-TARBALL_PATH=../../tarballs/external
XAMMAC_PATH=/Library/Frameworks/Xamarin.Mac.framework/Versions/Current
XAMMAC_LIB_PATH=$(XAMMAC_PATH)/lib
XAMMAC_PDB=$(XAMMAC_LIB_PATH)/@MAC_ARCHITECTURE@/full/Xamarin.Mac.pdb
@@ -40,18 +39,5 @@ uninstall:
distdir: dist
dist:
- mkdir -p $(TARBALL_PATH)
- @for dir in `ls .`; do \
- if test -d $$dir; then \
- echo Creating tarball for $$dir; \
- cd $$dir && git archive --prefix=monodevelop-@PACKAGE_VERSION@/external/$$dir/ HEAD | bzip2 > ../$(TARBALL_PATH)/$$dir-@PACKAGE_VERSION@.tar.bz2 && cd ..; \
- fi \
- done
dist-clean:
- @for dir in `ls .`; do \
- if test -d $$dir; then \
- rm -f $(TARBALL_PATH)/$$dir.tar.bz2; \
- fi \
- done
-