Remove unneeded files. Configure line was:
./configure --prefix=/boot/home/config/wget/ --without-ssl -disable-nls --disable-ipv6 --disable-rpath git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26893 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
46b2c7efd3
commit
52646494cd
@ -1,189 +0,0 @@
|
||||
# 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.
|
||||
|
||||
# In addition, as a special exception, the Free Software Foundation
|
||||
# gives permission to link the code of its release of Wget with the
|
||||
# OpenSSL project's "OpenSSL" library (or with modified versions of it
|
||||
# that use the same license as the "OpenSSL" library), and distribute
|
||||
# the linked executables. You must obey the GNU General Public License
|
||||
# in all respects for all of the code used other than "OpenSSL". If you
|
||||
# modify this file, you may extend this exception to your version of the
|
||||
# file, but you are not obligated to do so. If you do not wish to do
|
||||
# so, delete this exception statement from your version.
|
||||
|
||||
#
|
||||
# Version: 1.10.2
|
||||
#
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
|
||||
top_builddir = .
|
||||
|
||||
srcdir = .
|
||||
|
||||
|
||||
#
|
||||
# User configuration section
|
||||
#
|
||||
|
||||
#
|
||||
# Install variables
|
||||
#
|
||||
prefix = /boot/home/config/wget/
|
||||
exec_prefix = ${prefix}
|
||||
bindir = ${exec_prefix}/bin
|
||||
infodir = ${prefix}/info
|
||||
sysconfdir = ${prefix}/etc
|
||||
mandir = ${prefix}/man
|
||||
manext = 1
|
||||
localedir = $(prefix)/share/locale
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -O2 -Wall -Wno-implicit
|
||||
CPPFLAGS =
|
||||
DEFS = -DHAVE_CONFIG_H -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\"
|
||||
LIBS = -lsocket
|
||||
LDFLAGS =
|
||||
|
||||
#
|
||||
# End of user configuration section. There should be no need to change
|
||||
# anything below this line.
|
||||
#
|
||||
|
||||
DISTNAME = wget-1.10.2
|
||||
RM = rm -f
|
||||
|
||||
# These are used for maintenance only, so they are safe without
|
||||
# special autoconf cruft.
|
||||
FIND = find
|
||||
GZIP = gzip
|
||||
TAR = tar
|
||||
|
||||
# flags passed to recursive makes in subdirectories
|
||||
MAKEDEFS = CC='$(CC)' CPPFLAGS='$(CPPFLAGS)' DEFS='$(DEFS)' \
|
||||
CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' LIBS='$(LIBS)' \
|
||||
prefix='$(prefix)' exec_prefix='$(exec_prefix)' bindir='$(bindir)' \
|
||||
infodir='$(infodir)' mandir='$(mandir)' manext='$(manext)'
|
||||
|
||||
# subdirectories in the distribution
|
||||
SUBDIRS = src doc po util windows
|
||||
|
||||
# default target
|
||||
all: src/config.h Makefile $(SUBDIRS)
|
||||
|
||||
check: all
|
||||
|
||||
$(SUBDIRS): FORCE
|
||||
cd $@ && $(MAKE) $(MAKEDEFS)
|
||||
|
||||
# install everything
|
||||
install: install.bin install.info install.wgetrc \
|
||||
install.mo install.man
|
||||
|
||||
# install/uninstall the binary
|
||||
install.bin uninstall.bin:
|
||||
cd src && $(MAKE) $(MAKEDEFS) $@
|
||||
|
||||
# install/uninstall the info/man pages
|
||||
install.info uninstall.info install.man uninstall.man install.wgetrc:
|
||||
cd doc && $(MAKE) $(MAKEDEFS) $@
|
||||
|
||||
# Install `.mo' files
|
||||
install.mo:
|
||||
cd po && $(MAKE) $(MAKEDEFS) $@
|
||||
|
||||
# Create configure.bat from configure.bat.in by DOS-ifying the lines.
|
||||
# This is invoked by `make dist' and deleted by `make realclean' (not
|
||||
# `make distclean' because we want to preserve it for distribution).
|
||||
configure.bat: $(srcdir)/configure.bat.in
|
||||
awk '{ print $$0 ($$0 ~ /\r$$/ ? "" : "\r") }' $< > $@
|
||||
|
||||
# create tag files for Emacs
|
||||
TAGS:
|
||||
cd src && $(MAKE) $@
|
||||
|
||||
dist: $(srcdir)/configure $(srcdir)/configure.bat DISTFILES
|
||||
mkdir $(DISTNAME)
|
||||
for d in `$(FIND) . -type d ! -name CVS -a ! -name RCS -print`; do \
|
||||
if [ "$$d" != "." -a "$$d" != "./$(DISTNAME)" ]; then \
|
||||
mkdir $(DISTNAME)/$$d; \
|
||||
fi; \
|
||||
done
|
||||
for f in `cat DISTFILES`; do \
|
||||
ln $(srcdir)/$$f $(DISTNAME)/$$f || \
|
||||
{ echo copying $$f; cp -p $(srcdir)/$$f $(DISTNAME)/$$f ; } \
|
||||
done
|
||||
(cd $(DISTNAME); $(MAKE) distclean)
|
||||
$(TAR) chvf - $(DISTNAME) | $(GZIP) -c --best >$(DISTNAME).tar.gz
|
||||
$(RM) -r $(DISTNAME)
|
||||
$(RM) DISTFILES
|
||||
|
||||
DISTFILES: FORCE
|
||||
rm -rf $(DISTNAME)
|
||||
(cd $(srcdir); find . ! -type d -print) \
|
||||
| sed '/\/\(CVS\|RCS\)\//d; /$@/d; /\.tar.*/d; s/^.\///; /^\.$$/d;' \
|
||||
| sort | uniq > $@
|
||||
|
||||
#
|
||||
# Cleanup dependencies
|
||||
#
|
||||
|
||||
clean: clean-recursive clean-top
|
||||
distclean: distclean-recursive distclean-top
|
||||
realclean: realclean-recursive realclean-top
|
||||
|
||||
clean-top:
|
||||
$(RM) *~ *.bak $(DISTNAME).tar.gz
|
||||
|
||||
distclean-top: clean-top
|
||||
$(RM) Makefile config.status config.log config.cache libtool stamp-h
|
||||
$(RM) -r autom4te.cache
|
||||
|
||||
realclean-top: distclean-top
|
||||
$(RM) configure configure.bat
|
||||
|
||||
clean-recursive distclean-recursive realclean-recursive:
|
||||
for subdir in $(SUBDIRS); do \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
(cd $$subdir && $(MAKE) $(MAKEDEFS) $$target) || exit 1; \
|
||||
done
|
||||
|
||||
#
|
||||
# Dependencies for maintenance
|
||||
#
|
||||
|
||||
$(srcdir)/configure: configure.in
|
||||
cd $(srcdir) && autoconf
|
||||
|
||||
# autoheader might not change config.h.in, so touch a stamp file.
|
||||
$(srcdir)/src/config.h.in: stamp-h.in
|
||||
$(srcdir)/stamp-h.in: configure.in
|
||||
@true; # running autoheader here breaks: cd $(srcdir) && autoheader
|
||||
echo timestamp > $(srcdir)/stamp-h.in
|
||||
|
||||
src/config.h: stamp-h
|
||||
stamp-h: src/config.h.in config.status
|
||||
./config.status
|
||||
|
||||
Makefile: Makefile.in config.status
|
||||
./config.status
|
||||
|
||||
config.status: configure
|
||||
./config.status --recheck
|
||||
|
||||
FORCE:
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,182 +0,0 @@
|
||||
# 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: 1.10.2
|
||||
#
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
# Program to format Texinfo source into Info files.
|
||||
MAKEINFO = makeinfo
|
||||
# Program to format Texinfo source into DVI files.
|
||||
TEXI2DVI = texi2dvi
|
||||
# Program to convert DVI files to PostScript
|
||||
DVIPS = dvips -D 300
|
||||
# Program to convert texinfo files to html
|
||||
TEXI2HTML = texi2html -expandinfo -split_chapter
|
||||
|
||||
top_builddir = ..
|
||||
|
||||
top_srcdir = ..
|
||||
srcdir = .
|
||||
|
||||
|
||||
prefix = /boot/home/config/wget/
|
||||
infodir = ${prefix}/info
|
||||
mandir = ${prefix}/man
|
||||
manext = 1
|
||||
sysconfdir = ${prefix}/etc
|
||||
|
||||
DESTDIR =
|
||||
|
||||
INSTALL = /bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
RM = rm -f
|
||||
|
||||
TEXI2POD = texi2pod.pl
|
||||
POD2MAN = /boot/home/config/bin/pod2man
|
||||
MAN = wget.$(manext)
|
||||
WGETRC = $(sysconfdir)/wgetrc
|
||||
SAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion
|
||||
|
||||
#
|
||||
# Dependencies for building
|
||||
#
|
||||
|
||||
all: wget.info $(MAN)
|
||||
|
||||
everything: all wget_us.ps wget_a4.ps wget_toc.html
|
||||
|
||||
$(SAMPLERCTEXI): $(srcdir)/sample.wgetrc
|
||||
sed s/@/@@/g $? > $@
|
||||
|
||||
wget.info: $(srcdir)/wget.texi $(SAMPLERCTEXI) $(srcdir)/version.texi
|
||||
$(MAKEINFO) -I$(srcdir) $(srcdir)/wget.texi
|
||||
|
||||
$(TEXI2POD): $(srcdir)/$(TEXI2POD).in
|
||||
sed 's,^#! /usr/bin/perl,#! /boot/home/config/bin/perl,' $? > $@
|
||||
chmod u+x $@
|
||||
|
||||
wget.pod: $(srcdir)/wget.texi $(TEXI2POD) $(srcdir)/version.texi
|
||||
./$(TEXI2POD) $(srcdir)/wget.texi $@
|
||||
|
||||
$(MAN): wget.pod
|
||||
$(POD2MAN) --center="GNU Wget" --release="GNU Wget 1.10.2" $? > $@
|
||||
|
||||
#wget.cat: $(MAN)
|
||||
# nroff -man $? > $@
|
||||
|
||||
dvi: wget.dvi
|
||||
|
||||
wget.dvi: $(srcdir)/wget.texi
|
||||
$(TEXI2DVI) $(srcdir)/wget.texi
|
||||
|
||||
wget_us.ps: wget.dvi
|
||||
$(DVIPS) -t letter -o $@ wget.dvi
|
||||
|
||||
wget_a4.ps: wget.dvi
|
||||
$(DVIPS) -t a4 -o $@ wget.dvi
|
||||
|
||||
wget_toc.html: $(srcdir)/wget.texi
|
||||
$(TEXI2HTML) $(srcdir)/wget.texi
|
||||
|
||||
#
|
||||
# Dependencies for installing
|
||||
#
|
||||
|
||||
# install all the documentation
|
||||
install: install.info install.wgetrc install.man
|
||||
|
||||
# uninstall all the documentation
|
||||
uninstall: uninstall.info uninstall.man
|
||||
|
||||
# install info pages, creating install directory if necessary
|
||||
# if the info pages are built in the build directory, they are used.
|
||||
# otherwise, the ones from the distribution are installed.
|
||||
install.info: wget.info
|
||||
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir)
|
||||
-if test -f wget.info; then \
|
||||
for file in wget.info wget.info-*[0-9]; do \
|
||||
if test -f "$$file"; then \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/$$file" ; \
|
||||
fi; \
|
||||
done; \
|
||||
else \
|
||||
for file in $(srcdir)/wget.info $(srcdir)/wget.info-*[0-9]; do \
|
||||
if test -f "$$file"; then \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/`basename $$file`" ; \
|
||||
fi; \
|
||||
done; \
|
||||
fi
|
||||
|
||||
# install man page, creating install directory if necessary
|
||||
install.man: $(MAN)
|
||||
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext)
|
||||
$(INSTALL_DATA) $(MAN) $(DESTDIR)$(mandir)/man$(manext)/$(MAN)
|
||||
|
||||
# install sample.wgetrc
|
||||
install.wgetrc: $(srcdir)/sample.wgetrc
|
||||
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir)
|
||||
@if test -f $(DESTDIR)$(WGETRC); then \
|
||||
if cmp -s $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); then echo ""; \
|
||||
else \
|
||||
echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new'; \
|
||||
$(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new; \
|
||||
echo; \
|
||||
echo "WARNING: Differing \`$(DESTDIR)$(WGETRC)'"; \
|
||||
echo " exists and has been spared. You might want to"; \
|
||||
echo " consider merging in the new lines from"; \
|
||||
echo " \`$(DESTDIR)$(WGETRC).new'."; \
|
||||
echo; \
|
||||
fi; \
|
||||
else \
|
||||
$(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); \
|
||||
fi
|
||||
|
||||
# uninstall info pages
|
||||
uninstall.info:
|
||||
$(RM) $(DESTDIR)$(infodir)/wget.info*
|
||||
|
||||
# uninstall man page
|
||||
uninstall.man:
|
||||
$(RM) $(DESTDIR)$(mandir)/man$(manext)/$(MAN)
|
||||
|
||||
#
|
||||
# Dependencies for cleanup
|
||||
#
|
||||
|
||||
clean:
|
||||
$(RM) *~ *.bak *.cat *.pod *.html
|
||||
$(RM) *.dvi *.aux *.cp *.cps *.fn *.toc *.tp *.vr *.ps *.ky *.pg *.log
|
||||
|
||||
distclean: clean
|
||||
$(RM) Makefile
|
||||
$(RM) $(MAN) $(TEXI2POD)
|
||||
|
||||
realclean: distclean
|
||||
$(RM) wget.info*
|
||||
$(RM) $(SAMPLERCTEXI)
|
||||
|
||||
#
|
||||
# Dependencies for maintenance
|
||||
#
|
||||
|
||||
subdir = doc
|
||||
|
||||
Makefile: Makefile.in ../config.status
|
||||
cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
|
@ -1,251 +0,0 @@
|
||||
# Makefile for program source directory in GNU NLS utilities package.
|
||||
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||
#
|
||||
# This file file be copied and used freely without restrictions. It can
|
||||
# be used in projects which are not available under the GNU Public License
|
||||
# but which still want to provide support for the GNU gettext functionality.
|
||||
# Please note that the actual code is *not* freely available.
|
||||
|
||||
PACKAGE = wget
|
||||
VERSION = 1.10.2
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
|
||||
top_builddir = ..
|
||||
|
||||
srcdir = .
|
||||
top_srcdir = ..
|
||||
|
||||
|
||||
prefix = /boot/home/config/wget/
|
||||
exec_prefix = ${prefix}
|
||||
datadir = $(prefix)/
|
||||
localedir = $(datadir)/locale
|
||||
gnulocaledir = $(prefix)/share/locale
|
||||
gettextsrcdir = $(prefix)/share/gettext/po
|
||||
subdir = po
|
||||
|
||||
DESTDIR =
|
||||
|
||||
INSTALL = /bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
|
||||
CC = gcc
|
||||
GMSGFMT = PATH=../src:$$PATH
|
||||
MSGFMT =
|
||||
XGETTEXT = PATH=../src:$$PATH
|
||||
MSGMERGE = PATH=../src:$$PATH msgmerge
|
||||
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
CFLAGS = -O2 -Wall -Wno-implicit
|
||||
CPPFLAGS =
|
||||
|
||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||
|
||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||
|
||||
POFILES =
|
||||
GMOFILES =
|
||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
||||
|
||||
POTFILES = \
|
||||
../src/cmpt.c \
|
||||
../src/connect.c \
|
||||
../src/convert.c \
|
||||
../src/cookies.c \
|
||||
../src/ftp-basic.c \
|
||||
../src/ftp-ls.c \
|
||||
../src/ftp-opie.c \
|
||||
../src/ftp.c \
|
||||
../src/gen-md5.c \
|
||||
../src/getopt.c \
|
||||
../src/gnu-md5.c \
|
||||
../src/hash.c \
|
||||
../src/host.c \
|
||||
../src/html-parse.c \
|
||||
../src/html-url.c \
|
||||
../src/http.c \
|
||||
../src/init.c \
|
||||
../src/log.c \
|
||||
../src/main.c \
|
||||
../src/mswindows.c \
|
||||
../src/netrc.c \
|
||||
../src/openssl.c \
|
||||
../src/progress.c \
|
||||
../src/ptimer.c \
|
||||
../src/recur.c \
|
||||
../src/res.c \
|
||||
../src/retr.c \
|
||||
../src/url.c \
|
||||
../src/utils.c \
|
||||
../src/version.c \
|
||||
../src/xmalloc.c
|
||||
|
||||
CATALOGS =
|
||||
CATOBJEXT =
|
||||
INSTOBJEXT =
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg
|
||||
|
||||
.c.o:
|
||||
$(COMPILE) $<
|
||||
|
||||
.po.pox:
|
||||
$(MAKE) $(PACKAGE).pot
|
||||
$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
|
||||
|
||||
.po.mo:
|
||||
$(MSGFMT) -o $@ $<
|
||||
|
||||
.po.gmo:
|
||||
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
|
||||
&& rm -f $$file && $(GMSGFMT) -o $$file $<
|
||||
|
||||
|
||||
all: all-no
|
||||
|
||||
all-yes: $(CATALOGS)
|
||||
all-no:
|
||||
|
||||
$(srcdir)/$(PACKAGE).pot: $(POTFILES)
|
||||
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
|
||||
--add-comments --keyword=_ --keyword=N_ \
|
||||
--files-from=$(srcdir)/POTFILES.in
|
||||
rm -f $(srcdir)/$(PACKAGE).pot
|
||||
mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot
|
||||
|
||||
install.mo: install
|
||||
install: install-exec install-data
|
||||
install-exec:
|
||||
install-data: install-data-no
|
||||
install-data-no: all
|
||||
install-data-yes: all
|
||||
@catalogs='$(CATALOGS)'; \
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
case "$$cat" in \
|
||||
*.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \
|
||||
*) destdir=$(DESTDIR)$(localedir);; \
|
||||
esac; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
dir=$$destdir/$$lang/LC_MESSAGES; \
|
||||
$(top_srcdir)/mkinstalldirs $$dir; \
|
||||
if test -r $$cat; then \
|
||||
$(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
|
||||
else \
|
||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
echo "installing $(srcdir)/$$cat as" \
|
||||
"$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
|
||||
fi; \
|
||||
if test -r $$cat.m; then \
|
||||
$(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
|
||||
else \
|
||||
if test -r $(srcdir)/$$cat.m ; then \
|
||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
||||
$$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
echo "installing $(srcdir)/$$cat as" \
|
||||
"$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
|
||||
else \
|
||||
true; \
|
||||
fi; \
|
||||
fi; \
|
||||
done
|
||||
if test "$(PACKAGE)" = "gettext"; then \
|
||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
||||
$(gettextsrcdir)/Makefile.in.in; \
|
||||
else \
|
||||
: ; \
|
||||
fi
|
||||
|
||||
# Define this as empty until I found a useful application.
|
||||
installcheck:
|
||||
|
||||
uninstall:
|
||||
catalogs='$(CATALOGS)'; \
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
dir=$(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES; \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
done
|
||||
rm -f $(gettextsrcdir)/po-Makefile.in.in
|
||||
|
||||
check: all
|
||||
|
||||
cat-id-tbl.o: ../intl/libgettext.h
|
||||
|
||||
dvi info tags TAGS ID:
|
||||
|
||||
mostlyclean:
|
||||
rm -f core core.* *.pox $(PACKAGE).po *.old.po
|
||||
rm -fr *.o
|
||||
|
||||
clean: mostlyclean
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile Makefile.in POTFILES *.mo *.gmo *.msg
|
||||
|
||||
maintainer-clean: distclean
|
||||
@echo "!! This command is intended for maintainers to use;"
|
||||
@echo "!! it deletes files that may require special tools to rebuild."
|
||||
rm -f $(GMOFILES)
|
||||
|
||||
realclean: maintainer-clean
|
||||
|
||||
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||
dist distdir: update-po $(DISTFILES)
|
||||
dists="$(DISTFILES)"; \
|
||||
for file in $$dists; do \
|
||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
||||
done
|
||||
|
||||
update-po: Makefile
|
||||
$(MAKE) $(PACKAGE).pot
|
||||
PATH=`pwd`/../src:$$PATH; \
|
||||
cd $(srcdir); \
|
||||
catalogs='$(CATALOGS)'; \
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
mv $$lang.po $$lang.old.po; \
|
||||
echo "$$lang:"; \
|
||||
if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
|
||||
rm -f $$lang.old.po; \
|
||||
else \
|
||||
echo "msgmerge for $$cat failed!"; \
|
||||
rm -f $$lang.po; \
|
||||
mv $$lang.old.po $$lang.po; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
POTFILES: POTFILES.in
|
||||
( if test 'x$(srcdir)' != 'x.'; then \
|
||||
posrcprefix='$(top_srcdir)/'; \
|
||||
else \
|
||||
posrcprefix="../"; \
|
||||
fi; \
|
||||
rm -f $@-t $@ \
|
||||
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
|
||||
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||
| sed -e '$$s/\\$$//') > $@-t \
|
||||
&& chmod a-w $@-t \
|
||||
&& mv $@-t $@ )
|
||||
|
||||
Makefile: Makefile.in.in ../config.status POTFILES
|
||||
cd .. \
|
||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
||||
$(SHELL) ./config.status
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,220 +0,0 @@
|
||||
# Makefile for program source directory in GNU NLS utilities package.
|
||||
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||
#
|
||||
# This file file be copied and used freely without restrictions. It can
|
||||
# be used in projects which are not available under the GNU Public License
|
||||
# but which still want to provide support for the GNU gettext functionality.
|
||||
# Please note that the actual code is *not* freely available.
|
||||
|
||||
PACKAGE = wget
|
||||
VERSION = 1.10.2
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
|
||||
top_builddir = ..
|
||||
|
||||
srcdir = .
|
||||
top_srcdir = ..
|
||||
|
||||
|
||||
prefix = /boot/home/config/wget/
|
||||
exec_prefix = ${prefix}
|
||||
datadir = $(prefix)/
|
||||
localedir = $(datadir)/locale
|
||||
gnulocaledir = $(prefix)/share/locale
|
||||
gettextsrcdir = $(prefix)/share/gettext/po
|
||||
subdir = po
|
||||
|
||||
DESTDIR =
|
||||
|
||||
INSTALL = /bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
|
||||
CC = gcc
|
||||
GMSGFMT = PATH=../src:$$PATH
|
||||
MSGFMT =
|
||||
XGETTEXT = PATH=../src:$$PATH
|
||||
MSGMERGE = PATH=../src:$$PATH msgmerge
|
||||
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
CFLAGS = -O2 -Wall -Wno-implicit
|
||||
CPPFLAGS =
|
||||
|
||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||
|
||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||
|
||||
POFILES =
|
||||
GMOFILES =
|
||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
||||
|
||||
POTFILES = \
|
||||
|
||||
CATALOGS =
|
||||
CATOBJEXT =
|
||||
INSTOBJEXT =
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg
|
||||
|
||||
.c.o:
|
||||
$(COMPILE) $<
|
||||
|
||||
.po.pox:
|
||||
$(MAKE) $(PACKAGE).pot
|
||||
$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
|
||||
|
||||
.po.mo:
|
||||
$(MSGFMT) -o $@ $<
|
||||
|
||||
.po.gmo:
|
||||
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
|
||||
&& rm -f $$file && $(GMSGFMT) -o $$file $<
|
||||
|
||||
|
||||
all: all-no
|
||||
|
||||
all-yes: $(CATALOGS)
|
||||
all-no:
|
||||
|
||||
$(srcdir)/$(PACKAGE).pot: $(POTFILES)
|
||||
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
|
||||
--add-comments --keyword=_ --keyword=N_ \
|
||||
--files-from=$(srcdir)/POTFILES.in
|
||||
rm -f $(srcdir)/$(PACKAGE).pot
|
||||
mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot
|
||||
|
||||
install.mo: install
|
||||
install: install-exec install-data
|
||||
install-exec:
|
||||
install-data: install-data-no
|
||||
install-data-no: all
|
||||
install-data-yes: all
|
||||
@catalogs='$(CATALOGS)'; \
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
case "$$cat" in \
|
||||
*.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \
|
||||
*) destdir=$(DESTDIR)$(localedir);; \
|
||||
esac; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
dir=$$destdir/$$lang/LC_MESSAGES; \
|
||||
$(top_srcdir)/mkinstalldirs $$dir; \
|
||||
if test -r $$cat; then \
|
||||
$(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
|
||||
else \
|
||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
echo "installing $(srcdir)/$$cat as" \
|
||||
"$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
|
||||
fi; \
|
||||
if test -r $$cat.m; then \
|
||||
$(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
|
||||
else \
|
||||
if test -r $(srcdir)/$$cat.m ; then \
|
||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
||||
$$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
echo "installing $(srcdir)/$$cat as" \
|
||||
"$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
|
||||
else \
|
||||
true; \
|
||||
fi; \
|
||||
fi; \
|
||||
done
|
||||
if test "$(PACKAGE)" = "gettext"; then \
|
||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
||||
$(gettextsrcdir)/Makefile.in.in; \
|
||||
else \
|
||||
: ; \
|
||||
fi
|
||||
|
||||
# Define this as empty until I found a useful application.
|
||||
installcheck:
|
||||
|
||||
uninstall:
|
||||
catalogs='$(CATALOGS)'; \
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
dir=$(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES; \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
||||
rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
||||
done
|
||||
rm -f $(gettextsrcdir)/po-Makefile.in.in
|
||||
|
||||
check: all
|
||||
|
||||
cat-id-tbl.o: ../intl/libgettext.h
|
||||
|
||||
dvi info tags TAGS ID:
|
||||
|
||||
mostlyclean:
|
||||
rm -f core core.* *.pox $(PACKAGE).po *.old.po
|
||||
rm -fr *.o
|
||||
|
||||
clean: mostlyclean
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile Makefile.in POTFILES *.mo *.gmo *.msg
|
||||
|
||||
maintainer-clean: distclean
|
||||
@echo "!! This command is intended for maintainers to use;"
|
||||
@echo "!! it deletes files that may require special tools to rebuild."
|
||||
rm -f $(GMOFILES)
|
||||
|
||||
realclean: maintainer-clean
|
||||
|
||||
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||
dist distdir: update-po $(DISTFILES)
|
||||
dists="$(DISTFILES)"; \
|
||||
for file in $$dists; do \
|
||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
||||
done
|
||||
|
||||
update-po: Makefile
|
||||
$(MAKE) $(PACKAGE).pot
|
||||
PATH=`pwd`/../src:$$PATH; \
|
||||
cd $(srcdir); \
|
||||
catalogs='$(CATALOGS)'; \
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
mv $$lang.po $$lang.old.po; \
|
||||
echo "$$lang:"; \
|
||||
if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
|
||||
rm -f $$lang.old.po; \
|
||||
else \
|
||||
echo "msgmerge for $$cat failed!"; \
|
||||
rm -f $$lang.po; \
|
||||
mv $$lang.old.po $$lang.po; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
POTFILES: POTFILES.in
|
||||
( if test 'x$(srcdir)' != 'x.'; then \
|
||||
posrcprefix='$(top_srcdir)/'; \
|
||||
else \
|
||||
posrcprefix="../"; \
|
||||
fi; \
|
||||
rm -f $@-t $@ \
|
||||
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
|
||||
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
|
||||
| sed -e '$$s/\\$$//') > $@-t \
|
||||
&& chmod a-w $@-t \
|
||||
&& mv $@-t $@ )
|
||||
|
||||
Makefile: Makefile.in.in ../config.status POTFILES
|
||||
cd .. \
|
||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
||||
$(SHELL) ./config.status
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
@ -1,31 +0,0 @@
|
||||
../src/cmpt.c \
|
||||
../src/connect.c \
|
||||
../src/convert.c \
|
||||
../src/cookies.c \
|
||||
../src/ftp-basic.c \
|
||||
../src/ftp-ls.c \
|
||||
../src/ftp-opie.c \
|
||||
../src/ftp.c \
|
||||
../src/gen-md5.c \
|
||||
../src/getopt.c \
|
||||
../src/gnu-md5.c \
|
||||
../src/hash.c \
|
||||
../src/host.c \
|
||||
../src/html-parse.c \
|
||||
../src/html-url.c \
|
||||
../src/http.c \
|
||||
../src/init.c \
|
||||
../src/log.c \
|
||||
../src/main.c \
|
||||
../src/mswindows.c \
|
||||
../src/netrc.c \
|
||||
../src/openssl.c \
|
||||
../src/progress.c \
|
||||
../src/ptimer.c \
|
||||
../src/recur.c \
|
||||
../src/res.c \
|
||||
../src/retr.c \
|
||||
../src/url.c \
|
||||
../src/utils.c \
|
||||
../src/version.c \
|
||||
../src/xmalloc.c
|
@ -1,162 +0,0 @@
|
||||
# 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.
|
||||
|
||||
# In addition, as a special exception, the Free Software Foundation
|
||||
# gives permission to link the code of its release of Wget with the
|
||||
# OpenSSL project's "OpenSSL" library (or with modified versions of it
|
||||
# that use the same license as the "OpenSSL" library), and distribute
|
||||
# the linked executables. You must obey the GNU General Public License
|
||||
# in all respects for all of the code used other than "OpenSSL". If you
|
||||
# modify this file, you may extend this exception to your version of the
|
||||
# file, but you are not obligated to do so. If you do not wish to do
|
||||
# so, delete this exception statement from your version.
|
||||
|
||||
#
|
||||
# Version: 1.10.2
|
||||
#
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
top_builddir = ..
|
||||
|
||||
top_srcdir = ..
|
||||
srcdir = .
|
||||
|
||||
ANSI2KNR =
|
||||
o = .o
|
||||
|
||||
prefix = /boot/home/config/wget/
|
||||
exec_prefix = ${prefix}
|
||||
bindir = ${exec_prefix}/bin
|
||||
sysconfdir = ${prefix}/etc
|
||||
localedir = $(prefix)/share/locale
|
||||
|
||||
DESTDIR =
|
||||
|
||||
CC = gcc
|
||||
CPPFLAGS =
|
||||
# The following line is losing on some versions of make!
|
||||
DEFS = -DHAVE_CONFIG_H -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\"
|
||||
CFLAGS = -O2 -Wall -Wno-implicit
|
||||
LDFLAGS =
|
||||
LIBS = -lsocket
|
||||
exeext =
|
||||
|
||||
INCLUDES = -I. -I$(srcdir)
|
||||
|
||||
COMPILE = $(CC) $(INCLUDES) $(CPPFLAGS) $(DEFS) $(CFLAGS)
|
||||
LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
||||
INSTALL = /bin/install -c
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
RM = rm -f
|
||||
ETAGS = etags
|
||||
|
||||
# Conditional compiles
|
||||
ALLOCA =
|
||||
MD5_OBJ = gen-md5$o gnu-md5$o
|
||||
OPIE_OBJ = ftp-opie$o
|
||||
NTLM_OBJ =
|
||||
SSL_OBJ =
|
||||
GETOPT_OBJ =
|
||||
|
||||
OBJ = $(ALLOCA) cmpt$o connect$o convert$o cookies$o \
|
||||
ftp$o ftp-basic$o ftp-ls$o $(OPIE_OBJ) $(GETOPT_OBJ) hash$o \
|
||||
host$o html-parse$o html-url$o http$o $(NTLM_OBJ) init$o \
|
||||
log$o main$o $(MD5_OBJ) netrc$o progress$o ptimer$o recur$o \
|
||||
res$o retr$o safe-ctype$o snprintf$o $(SSL_OBJ) url$o \
|
||||
utils$o version$o xmalloc$o
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .o ._c ._o
|
||||
|
||||
.c.o:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
.c._c: $(ANSI2KNR)
|
||||
$(ANSI2KNR) $< > $*.tmp && mv $*.tmp $@
|
||||
|
||||
._c._o:
|
||||
@echo $(COMPILE) -c $<
|
||||
@rm -f _$*.c
|
||||
@ln $< _$*.c && $(COMPILE) -c _$*.c && mv _$*.o $@ && rm _$*.c
|
||||
|
||||
.c._o: $(ANSI2KNR)
|
||||
$(ANSI2KNR) $< > $*.tmp && mv $*.tmp $*._c
|
||||
@echo $(COMPILE) -c $*._c
|
||||
@rm -f _$*.c
|
||||
@ln $*._c _$*.c && $(COMPILE) -c _$*.c && mv _$*.o $@ && rm _$*.c
|
||||
|
||||
# Dependencies for building
|
||||
|
||||
wget$(exeext): $(OBJ)
|
||||
$(LINK) $(OBJ) $(LIBS)
|
||||
|
||||
ansi2knr: ansi2knr.o
|
||||
$(CC) -o ansi2knr ansi2knr.o $(LIBS)
|
||||
|
||||
# We make object files depend on every header. Rather than attempt to
|
||||
# track dependencies, everything gets recompiled when a header
|
||||
# changes. With a program of Wget's size this doesn't waste much
|
||||
# time, and it's a lot safer than attempting to get all the
|
||||
# dependencies right.
|
||||
|
||||
$(OBJ): $(ANSI2KNR) \
|
||||
config-post.h connect.h convert.h cookies.h ftp.h gen-md5.h \
|
||||
getopt.h gnu-md5.h hash.h host.h html-parse.h http-ntlm.h \
|
||||
init.h log.h mswindows.h netrc.h options.h progress.h \
|
||||
ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h sysdep.h \
|
||||
url.h utils.h wget.h xmalloc.h
|
||||
|
||||
#
|
||||
# Dependencies for installing
|
||||
#
|
||||
|
||||
install: install.bin
|
||||
|
||||
uninstall: uninstall.bin
|
||||
|
||||
install.bin: wget$(exeext)
|
||||
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
|
||||
$(INSTALL_PROGRAM) wget$(exeext) $(DESTDIR)$(bindir)/wget$(exeext)
|
||||
|
||||
uninstall.bin:
|
||||
$(RM) $(DESTDIR)$(bindir)/wget$(exeext)
|
||||
|
||||
#
|
||||
# Dependencies for cleanup
|
||||
#
|
||||
|
||||
clean:
|
||||
$(RM) *.o wget$(exeext) *~ *.bak core core.[0-9]* $(ANSI2KNR) *._o *._c
|
||||
|
||||
distclean: clean
|
||||
$(RM) Makefile config.h
|
||||
|
||||
realclean: distclean
|
||||
$(RM) TAGS config.h.in
|
||||
|
||||
#
|
||||
# Dependencies for maintenance
|
||||
#
|
||||
|
||||
subdir = src
|
||||
|
||||
Makefile: Makefile.in ../config.status
|
||||
cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
|
||||
|
||||
TAGS: *.c *.h
|
||||
-$(ETAGS) *.c *.h
|
@ -1 +0,0 @@
|
||||
timestamp
|
@ -1,49 +0,0 @@
|
||||
# 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.
|
||||
|
||||
# In addition, as a special exception, the Free Software Foundation
|
||||
# gives permission to link the code of its release of Wget with the
|
||||
# OpenSSL project's "OpenSSL" library (or with modified versions of it
|
||||
# that use the same license as the "OpenSSL" library), and distribute
|
||||
# the linked executables. You must obey the GNU General Public License
|
||||
# in all respects for all of the code used other than "OpenSSL". If you
|
||||
# modify this file, you may extend this exception to your version of the
|
||||
# file, but you are not obligated to do so. If you do not wish to do
|
||||
# so, delete this exception statement from your version.
|
||||
|
||||
#
|
||||
# Version: 1.10.2
|
||||
#
|
||||
|
||||
SHELL = /bin/sh
|
||||
|
||||
top_builddir = ..
|
||||
|
||||
srcdir = .
|
||||
|
||||
|
||||
RM = rm -f
|
||||
|
||||
all:
|
||||
|
||||
clean:
|
||||
|
||||
distclean: clean
|
||||
$(RM) Makefile
|
||||
|
||||
realclean: distclean
|
||||
|
@ -1,53 +0,0 @@
|
||||
# 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.
|
||||
|
||||
# In addition, as a special exception, the Free Software Foundation
|
||||
# gives permission to link the code of its release of Wget with the
|
||||
# OpenSSL project's "OpenSSL" library (or with modified versions of it
|
||||
# that use the same license as the "OpenSSL" library), and distribute
|
||||
# the linked executables. You must obey the GNU General Public License
|
||||
# in all respects for all of the code used other than "OpenSSL". If you
|
||||
# modify this file, you may extend this exception to your version of the
|
||||
# file, but you are not obligated to do so. If you do not wish to do
|
||||
# so, delete this exception statement from your version.
|
||||
|
||||
#
|
||||
# Version: 1.10.2
|
||||
#
|
||||
|
||||
# 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
|
||||
|
||||
top_builddir = ..
|
||||
|
||||
srcdir = .
|
||||
|
||||
|
||||
RM = rm -f
|
||||
|
||||
all:
|
||||
|
||||
clean:
|
||||
|
||||
distclean: clean
|
||||
$(RM) Makefile
|
||||
|
||||
realclean: distclean
|
||||
|
Loading…
x
Reference in New Issue
Block a user