From 649c599e0e7e5861fa0ea0fe623be7f9ca9e60a5 Mon Sep 17 00:00:00 2001 From: hniksic Date: Sat, 9 Dec 2000 17:55:43 -0800 Subject: [PATCH] [svn] Add a dummy Makefile.in. --- ChangeLog | 6 ++++++ configure | 7 ++++--- configure.in | 4 ++-- windows/Makefile.in | 41 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 5 deletions(-) create mode 100644 windows/Makefile.in diff --git a/ChangeLog b/ChangeLog index 362dfafc..7f5e59fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-12-10 Hrvoje Niksic + + * configure.in: Add windows/Makefile to the output block. + + * windows/Makefile.in: New file. + 2000-11-25 Karl Eichwalder * Makefile.in (SUBDIRS): Add 'windows'. diff --git a/configure b/configure index ff08c508..c1cb18d8 100755 --- 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 <> $CONFIG_STATUS <> $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 diff --git a/configure.in b/configure.in index ef12b1ff..a715746e 100644 --- a/configure.in +++ b/configure.in @@ -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 index 00000000..1129e6d7 --- /dev/null +++ b/windows/Makefile.in @@ -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 + -- 2.39.2