summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAnthony Mallet <mallet@laas.fr>2003-07-07 09:06:23 +0000
committerAnthony Mallet <mallet@laas.fr>2003-07-07 09:06:23 +0000
commita8efd49cba8d8e968eb2aba3730cd2881b33c86b (patch)
tree15c66bf1d90aca8fa57c5573717e6a7eb30601b7 /Makefile.in
downloadeltclsh-a8efd49cba8d8e968eb2aba3730cd2881b33c86b.tar.gz
eltclsh/elwish: interactive tcl and tk interpreters
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in73
1 files changed, 73 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..33432af
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,73 @@
+# $LAAS$
+
+#
+# Copyright (c) 2002 LAAS/CNRS -- Fri Mar 15 2002
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in
+# the documentation and/or other materials provided with the
+# distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+
+include config.mk
+
+topsrcdir= @top_srcdir@
+srcdir= @srcdir@
+
+
+config_files = \
+ config.mk \
+ Makefile \
+ src/Makefile \
+ tcl/Makefile
+
+config_headers = \
+ config.h
+
+
+# --- Directory recursion -----------------------------------------------
+
+SUBDIRS= src tcl
+
+make_subdirs= @for d in ${SUBDIRS}; do (cd $$d; ${MAKE} $@ ); done
+
+all install depends: $(config_files) $(config_headers)
+ $(make_subdirs)
+
+clean:
+ $(make_subdirs)
+
+
+# --- autoconf/autoheader -----------------------------------------------
+
+config.status: $(topsrcdir)/configure
+ ./config.status --recheck
+
+libtool: $(LIBTOOL_DEPS)
+ ./config.status --recheck
+
+$(config_files): %: $(topsrcdir)/%.in config.status
+ CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
+
+$(config_headers): %: $(topsrcdir)/%.in config.status
+ CONFIG_FILES= CONFIG_HEADERS=$@ ./config.status
+ touch $@ \ No newline at end of file