* Makefile.in: increment VERSION. Change tar file name for dist and
bindist targets to be more standard. * config.guess: Update with the currently published file. * config.sub: ditto. * configure.in: Use value of build_alias instead of testing for directory names to set BUILDENV. * configure: ditto. * lib/Makefile.in: Change the name of the targets install, install-headers and install-libraries to xinstall, xinstall-headers and xinstall-libraries for system target specified installation. Recreate targets install, install-headers and install-libraries for exec-prefix specified installation. Ditto for the uninstall targets of the same name.
This commit is contained in:
parent
167095f6c0
commit
19d9e89b4a
winsup/w32api
|
@ -1,3 +1,19 @@
|
||||||
|
Mon Oct 19 13:55:00 2000 Earnie Boyd <earnie_boyd@yahoo.com>
|
||||||
|
|
||||||
|
* Makefile.in: increment VERSION. Change tar file name for dist and
|
||||||
|
bindist targets to be more standard.
|
||||||
|
* config.guess: Update with the currently published file.
|
||||||
|
* config.sub: ditto.
|
||||||
|
* configure.in: Use value of build_alias instead of testing for
|
||||||
|
directory names to set BUILDENV.
|
||||||
|
* configure: ditto.
|
||||||
|
* lib/Makefile.in: Change the name of the targets install,
|
||||||
|
install-headers and install-libraries to xinstall, xinstall-headers
|
||||||
|
and xinstall-libraries for system target specified installation.
|
||||||
|
Recreate targets install, install-headers and install-libraries for
|
||||||
|
exec-prefix specified installation. Ditto for the uninstall targets of
|
||||||
|
the same name.
|
||||||
|
|
||||||
Mon Oct 9 11:49:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
Mon Oct 9 11:49:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* include/iprtrmib.h: Further layout changes according to standard.
|
* include/iprtrmib.h: Further layout changes according to standard.
|
||||||
|
|
|
@ -58,7 +58,7 @@ FLAGS_TO_PASS = \
|
||||||
SUBDIRS = lib
|
SUBDIRS = lib
|
||||||
|
|
||||||
PACKAGE = w32api
|
PACKAGE = w32api
|
||||||
VERSION = 0.2
|
VERSION = 0.3
|
||||||
|
|
||||||
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
||||||
install-sh README ChangeLog TODO
|
install-sh README ChangeLog TODO
|
||||||
|
@ -93,15 +93,16 @@ dist:
|
||||||
for i in $(SUBDIRS); do \
|
for i in $(SUBDIRS); do \
|
||||||
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
||||||
done
|
done
|
||||||
rm -f $(distdir).tar.gz
|
rm -f $(distdir)-src.tar.gz
|
||||||
$(TAR) czf $(distdir).tar.gz $(distdir)
|
$(TAR) czf $(distdir)-src.tar.gz $(distdir)
|
||||||
|
|
||||||
bindist:
|
bindist:
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
mkdir $(distdir)
|
mkdir $(distdir)
|
||||||
chmod 755 $(distdir)
|
chmod 755 $(distdir)
|
||||||
$(MAKE) install prefix=../$(distdir)
|
$(MAKE) install prefix=../$(distdir)
|
||||||
cd $(distdir); $(TAR) czf ../$(distdir)b.tar.gz .
|
rm -f $(distdir).tar.gz
|
||||||
|
cd $(distdir); $(TAR) czf ../$(distdir).tar.gz .
|
||||||
|
|
||||||
Makefile: Makefile.in config.status configure
|
Makefile: Makefile.in config.status configure
|
||||||
$(SHELL) config.status
|
$(SHELL) config.status
|
||||||
|
|
Loading…
Reference in New Issue