* 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
|
@ -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>
|
||||
|
||||
* include/iprtrmib.h: Further layout changes according to standard.
|
||||
|
|
|
@ -58,7 +58,7 @@ FLAGS_TO_PASS = \
|
|||
SUBDIRS = lib
|
||||
|
||||
PACKAGE = w32api
|
||||
VERSION = 0.2
|
||||
VERSION = 0.3
|
||||
|
||||
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
||||
install-sh README ChangeLog TODO
|
||||
|
@ -93,15 +93,16 @@ dist:
|
|||
for i in $(SUBDIRS); do \
|
||||
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
||||
done
|
||||
rm -f $(distdir).tar.gz
|
||||
$(TAR) czf $(distdir).tar.gz $(distdir)
|
||||
rm -f $(distdir)-src.tar.gz
|
||||
$(TAR) czf $(distdir)-src.tar.gz $(distdir)
|
||||
|
||||
bindist:
|
||||
rm -rf $(distdir)
|
||||
mkdir $(distdir)
|
||||
chmod 755 $(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
|
||||
$(SHELL) config.status
|
||||
|
|
Loading…
Reference in New Issue