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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2005-03-14 13:39:31 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-03-14 13:39:31 +0300
commit3be87c91e7d14f29a48be9d0b43c17f6e266a47c (patch)
treeba23c24042389b32ddf974d0acb35708d12b51a7 /mcs/tools/security
parent6e2f1bf66216a71c0233ac49bf69141c83fa31fb (diff)
In .:
* Makefile (_boot_): New. Used to generalize the bootstrap to clean and install too. * tools/security/Makefile (install-local, uninstall-local): Disable when NO_INSTALL is defined. * jay/Makefile (install-local, uninstall-local): Disable when NO_INSTALL is defined. * build/executable.make (install-local): Depend on all-local even when NO_INSTALL is defined. * build/library.make: Minor cleanups to match executable.make. * build/profiles/basic.make (no-install): Remove. * build/profiles/net_1_1_bootstrap.make (no-install): Likewise. svn path=/trunk/mcs/; revision=41786
Diffstat (limited to 'mcs/tools/security')
-rw-r--r--mcs/tools/security/ChangeLog5
-rw-r--r--mcs/tools/security/Makefile5
2 files changed, 10 insertions, 0 deletions
diff --git a/mcs/tools/security/ChangeLog b/mcs/tools/security/ChangeLog
index f8277bee8a4..e04a7a45da8 100644
--- a/mcs/tools/security/ChangeLog
+++ b/mcs/tools/security/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-14 Raja R Harinath <rharinath@novell.com>
+
+ * Makefile (install-local, uninstall-local): Disable when
+ NO_INSTALL is defined.
+
2005-02-21 Michal Moskal <malekith@pld-linux.org>
* Makefile (PROGRAM_INSTALL_DIR): Define in terms of $(libdir).
diff --git a/mcs/tools/security/Makefile b/mcs/tools/security/Makefile
index 011089a545e..80c5f22515c 100644
--- a/mcs/tools/security/Makefile
+++ b/mcs/tools/security/Makefile
@@ -18,6 +18,10 @@ else
all-local: $(SECURITY_PROGRAMS)
endif
+install-local: all-local
+uninstall-local:
+
+ifndef NO_INSTALL
install-local: $(SECURITY_PROGRAMS)
$(MKINSTALLDIRS) $(DESTDIR)$(PROGRAM_INSTALL_DIR)
for p in $(SECURITY_PROGRAMS) ; do \
@@ -29,6 +33,7 @@ uninstall-local:
for p in $(SECURITY_PROGRAMS) ; do \
rm -f $(DESTDIR)$(PROGRAM_INSTALL_DIR)/$$p* ; \
done
+endif
test-local: