]> sjero.net Git - wget/commitdiff
[svn] Add a dummy Makefile.in.
authorhniksic <devnull@localhost>
Sun, 10 Dec 2000 01:55:43 +0000 (17:55 -0800)
committerhniksic <devnull@localhost>
Sun, 10 Dec 2000 01:55:43 +0000 (17:55 -0800)
ChangeLog
configure
configure.in
windows/Makefile.in [new file with mode: 0644]

index 362dfafc1250ebf6f69ba5b732a1f8fef41680c0..7f5e59fd6baf719870a3d760c33771e3bf2b1a26 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-12-10  Hrvoje Niksic  <hniksic@arsdigita.com>
+
+       * configure.in: Add windows/Makefile to the output block.
+
+       * windows/Makefile.in: New file.
+
 2000-11-25  Karl Eichwalder  <ke@suse.de>
 
        * Makefile.in (SUBDIRS): Add 'windows'.
index ff08c5081a83fa3f14d077396530d6bd96928bbe..c1cb18d801551a3fe0fcce0ce4992a23ca05322f 100755 (executable)
--- a/configure
+++ b/configure
@@ -3343,7 +3343,8 @@ done
 ac_given_srcdir=$srcdir
 ac_given_INSTALL="$INSTALL"
 
-trap 'rm -fr `echo "Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in src/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
+trap 'rm -fr `echo "Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in
+           windows/Makefile src/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
 cat >> $CONFIG_STATUS <<EOF
 
@@ -3449,7 +3450,8 @@ EOF
 
 cat >> $CONFIG_STATUS <<EOF
 
-CONFIG_FILES=\${CONFIG_FILES-"Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in"}
+CONFIG_FILES=\${CONFIG_FILES-"Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in
+           windows/Makefile"}
 EOF
 cat >> $CONFIG_STATUS <<\EOF
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
@@ -3638,7 +3640,6 @@ srcdir=$ac_given_srcdir # Advanced autoconf hackery
    echo "creating po/Makefile"
    sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
   
-test -d windows || mkdir windows
 test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
 exit 0
 EOF
index ef12b1ffa6c21d1a9ad1553a6c4abca506b8cd2e..a715746e83ed73711467507cf3c4739fc5158721 100644 (file)
@@ -227,7 +227,7 @@ esac
 dnl
 dnl Create output
 dnl
-AC_OUTPUT([Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in],
+AC_OUTPUT([Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in
+           windows/Makefile],
 [WGET_PROCESS_PO
-test -d windows || mkdir windows
 test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h])
diff --git a/windows/Makefile.in b/windows/Makefile.in
new file mode 100644 (file)
index 0000000..1129e6d
--- /dev/null
@@ -0,0 +1,41 @@
+# Makefile for `wget' utility
+# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program 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.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+#
+# Version: @VERSION@
+#
+
+# This file is just a stub, so that the build subprocess in `windows'
+# succeeds.  This directory is not used under Unix builds, normally
+# affected by Makefile.in.
+
+SHELL = /bin/sh
+
+srcdir = @srcdir@
+VPATH  = @srcdir@
+
+RM = rm -f
+
+all:
+
+clean:
+
+distclean: clean
+       $(RM) Makefile
+
+realclean: distclean
+