mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Keep configure.bat in the distribution.
This commit is contained in:
parent
51c82cd8b3
commit
9e4443571f
@ -1,3 +1,8 @@
|
|||||||
|
2003-10-23 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* Makefile.in (dist): Depend on configure.bat.
|
||||||
|
(realclean-top): Delete configure.bat.
|
||||||
|
|
||||||
2003-10-21 Hrvoje Niksic <hniksic@xemacs.org>
|
2003-10-21 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* Makefile.in (distclean-top): Remove the libtool script, because
|
* Makefile.in (distclean-top): Remove the libtool script, because
|
||||||
|
@ -113,6 +113,8 @@ libtool: $(LIBTOOL_DEPS)
|
|||||||
$(SHELL) ./config.status --recheck
|
$(SHELL) ./config.status --recheck
|
||||||
|
|
||||||
# Create configure.bat from configure.bat.in by DOS-ifying the lines.
|
# 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: configure.bat.in
|
configure.bat: configure.bat.in
|
||||||
awk '{ print $$0 ($$0 ~ /\r$$/ ? "" : "\r") }' $@.in > $@
|
awk '{ print $$0 ($$0 ~ /\r$$/ ? "" : "\r") }' $@.in > $@
|
||||||
|
|
||||||
@ -120,7 +122,7 @@ configure.bat: configure.bat.in
|
|||||||
TAGS:
|
TAGS:
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
dist: $(srcdir)/configure DISTFILES
|
dist: $(srcdir)/configure $(srcdir)/configure.bat DISTFILES
|
||||||
mkdir $(DISTNAME)
|
mkdir $(DISTNAME)
|
||||||
for d in `$(FIND) . -type d ! -name CVS -a ! -name RCS -print`; do \
|
for d in `$(FIND) . -type d ! -name CVS -a ! -name RCS -print`; do \
|
||||||
if [ "$$d" != "." -a "$$d" != "./$(DISTNAME)" ]; then \
|
if [ "$$d" != "." -a "$$d" != "./$(DISTNAME)" ]; then \
|
||||||
@ -162,7 +164,7 @@ distclean-top: clean-top
|
|||||||
$(RM) -r autom4te.cache
|
$(RM) -r autom4te.cache
|
||||||
|
|
||||||
realclean-top: distclean-top
|
realclean-top: distclean-top
|
||||||
$(RM) configure
|
$(RM) configure configure.bat
|
||||||
|
|
||||||
clean-recursive distclean-recursive realclean-recursive:
|
clean-recursive distclean-recursive realclean-recursive:
|
||||||
for subdir in $(SUBDIRS); do \
|
for subdir in $(SUBDIRS); do \
|
||||||
|
Loading…
Reference in New Issue
Block a user