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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Jorgensen <ajorgensen@novell.com>2008-02-01 21:11:20 +0300
committerAndrew Jorgensen <ajorgensen@novell.com>2008-02-01 21:11:20 +0300
commit3415348ad1e9dcaa646aeb768eb77dc8c1608f38 (patch)
tree570a2c195af1e024b75e5200770ba01999272815 /gendarme/console
parent9de757d227454a83fdfdb202d7ba79e0b442817c (diff)
Fixes to import gendarme into mono-tools and a good amount of autotools love as well
Also some svn:ignore love svn path=/trunk/mono-tools/; revision=94540
Diffstat (limited to 'gendarme/console')
-rw-r--r--gendarme/console/Makefile.am17
1 files changed, 2 insertions, 15 deletions
diff --git a/gendarme/console/Makefile.am b/gendarme/console/Makefile.am
index eee7145d..7c612a67 100644
--- a/gendarme/console/Makefile.am
+++ b/gendarme/console/Makefile.am
@@ -1,4 +1,4 @@
-gendarmedir=$(pkglibdir)
+gendarmedir=$(prefix)/lib/gendarme
gendarme_SCRIPTS = ../bin/gendarme.exe
EXTRA_DIST = $(gendarme_sources) $(gendarme_sources_in) console.mdp gendarme.xsl gendarme.csproj
CLEANFILES = $(gendarme_SCRIPTS) $(gendarme_SCRIPTS).mdb
@@ -13,21 +13,8 @@ gendarme_build_sources = $(addprefix $(srcdir)/, $(gendarme_sources))
gendarme_build_sources += $(gendarme_generated_sources)
../bin/gendarme.exe: $(gendarme_build_sources) $(gendarme_resources)
- $(MCS) -debug -pkg:mono-cecil -r:../bin/Gendarme.Framework.dll -r:System.Xml.dll -out:$@ $(gendarme_build_sources) \
+ $(GMCS) -debug -r:$(top_builddir)/gendarme/bin/Mono.Cecil.dll -r:../bin/Gendarme.Framework.dll -r:System.Xml.dll -out:$@ $(gendarme_build_sources) \
-resource:gendarme.xsl
self-test: ../bin/gendarme.exe
mono --debug ../bin/gendarme.exe ../bin/gendarme.exe
-
-# Install Unstable Mono Libraries (see configure.ac)
-
-install-data-hook:
- for ASM in $(INSTALLED_ASSEMBLIES); do \
- $(INSTALL) -c -m 0755 $$ASM $(DESTDIR)$(pkglibdir); \
- done;
-
-uninstall-hook:
- for ASM in $(INSTALLED_ASSEMBLIES); do \
- rm -f $(DESTDIR)$(pkglibdir)/`basename $$ASM`; \
- done;
-