summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-04-27 22:40:53 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-04-27 22:40:53 +0000
commitc3a96e4f2fdeb252abd6f0e8ab5d60e36993d118 (patch)
tree455e4447f208c17a2ddaed79b2a76982dc9d56af /bin
parentfa1ac8a9ebad646107da703a0e4f5f0d3864f555 (diff)
downloadATCD-c3a96e4f2fdeb252abd6f0e8ab5d60e36993d118.tar.gz
renamed `autogen' to `bootstrap'
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bootstrap44
1 files changed, 44 insertions, 0 deletions
diff --git a/bin/bootstrap b/bin/bootstrap
new file mode 100755
index 00000000000..c8157c058ec
--- /dev/null
+++ b/bin/bootstrap
@@ -0,0 +1,44 @@
+#! /bin/sh
+
+# -------------------------------------------------------------------------
+# $Id$
+#
+# Bootstrap ACE/TAO configuration tools when checked out from CVS.
+# Requires GNU autoconf, GNU automake and GNU libtool.
+#
+# This script is only meant to be run by ACE/TAO maintainers.
+#
+# -------------------------------------------------------------------------
+
+# Copyright (C) 1999 Ossama Othman
+#
+# All Rights Reserved
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the current ACE distribution terms.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+
+# Generate an `aclocal.m4' file from all existing m4 macro files
+# including those in the `m4' directory.
+aclocal -I m4
+
+# Generate a `config.h.in' configuration header template from `acconfig.h'.
+autoheader
+
+# Generate the `configure' script from the `configure.in'.
+autoconf
+
+# Generate all `Makefile.in' templates in the directories listed in
+# `configure.in' and add any missing files that GNU Automake needs so
+# that the distribution and configuration processes will run properly.
+automake --add-missing #--verbose
+
+# Update the NEWS file
+# For now just copy the contents of the `VERSION' file to make automake
+# happy. Eventually, we should start putting real news in to it.
+cp VERSION NEWS
+