mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 16:26:12 +08:00
* Makefile.in: increment VERSION.
(dist:) Rename to srcdist. Create new dist target to call srcdist and bindist targets. (srcdist:) New target. (clean-top:) add call to mostlyclean-top and add rm of distribution tarballs. * lib/Makefile.in: (uninstall:) modify to remove files from the new w32api subdirectory and to remove w32api subdirectory. (xuninstall:) Ditto. TODO: Add a task to redo the clean targets of Makefile.in
This commit is contained in:
parent
df664bc1a8
commit
014b820a0d
@ -1,3 +1,16 @@
|
|||||||
|
2000-11-06 Earnie Boyd <earnie_boyd@yahoo.com>
|
||||||
|
|
||||||
|
* Makefile.in: increment VERSION.
|
||||||
|
(dist:) Rename to srcdist. Create new dist target to call
|
||||||
|
srcdist and bindist targets.
|
||||||
|
(srcdist:) New target.
|
||||||
|
(clean-top:) add call to mostlyclean-top and add rm of distribution
|
||||||
|
tarballs.
|
||||||
|
* lib/Makefile.in: (uninstall:) modify to remove files from the
|
||||||
|
new w32api subdirectory and to remove w32api subdirectory.
|
||||||
|
(xuninstall:) Ditto.
|
||||||
|
TODO: Add a task to redo the clean targets of Makefile.in
|
||||||
|
|
||||||
Fri Nov 3 21:50:47 2000 Christopher Faylor <cgf@cygnus.com>
|
Fri Nov 3 21:50:47 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* lib/Makefile.in: Install header files in w32api subdirectory.
|
* lib/Makefile.in: Install header files in w32api subdirectory.
|
||||||
|
@ -58,7 +58,7 @@ FLAGS_TO_PASS = \
|
|||||||
SUBDIRS = lib
|
SUBDIRS = lib
|
||||||
|
|
||||||
PACKAGE = w32api
|
PACKAGE = w32api
|
||||||
VERSION = 0.3
|
VERSION = 0.4
|
||||||
|
|
||||||
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 CONTRIBUTIONS
|
install-sh README ChangeLog TODO CONTRIBUTIONS
|
||||||
@ -83,7 +83,9 @@ install uninstall:
|
|||||||
|
|
||||||
distdir = $(PACKAGE)-$(VERSION)
|
distdir = $(PACKAGE)-$(VERSION)
|
||||||
|
|
||||||
dist:
|
dist: srcdist bindist
|
||||||
|
|
||||||
|
srcdist:
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
mkdir $(distdir)
|
mkdir $(distdir)
|
||||||
chmod 755 $(distdir)
|
chmod 755 $(distdir)
|
||||||
@ -109,17 +111,16 @@ Makefile: Makefile.in config.status configure
|
|||||||
|
|
||||||
mostlyclean-top:
|
mostlyclean-top:
|
||||||
rm -f *~
|
rm -f *~
|
||||||
clean-top:
|
clean-top: mostlyclean-top
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
|
rm -f $(distdir)*.tar.gz
|
||||||
maintainer-clean-top:
|
maintainer-clean-top:
|
||||||
|
|
||||||
mostlyclean: mostlyclean-top mostlyclean-subdirs
|
mostlyclean: mostlyclean-top mostlyclean-subdirs
|
||||||
clean: mostlyclean-top clean-subdirs
|
clean: mostlyclean-top clean-subdirs
|
||||||
distclean: clean-top
|
distclean: clean-top
|
||||||
rm -f Makefile config.status config.log config.cache TAGS *~
|
rm -f Makefile config.status config.log config.cache TAGS *~
|
||||||
rm -f include/*~
|
|
||||||
rm -f $(distdir)*.tar.gz
|
|
||||||
$(MAKE) -C lib distclean
|
$(MAKE) -C lib distclean
|
||||||
maintainer-clean: maintainer-clean-subdirs
|
maintainer-clean: maintainer-clean-subdirs
|
||||||
|
|
||||||
.PHONY: lib test
|
.PHONY: lib test
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
Makefile.in: Need to redo the clean targets
|
||||||
|
|
||||||
**Check to see if the rest of this is still valid?**
|
**Check to see if the rest of this is still valid?**
|
||||||
|
|
||||||
winsock2.h - Possible to merge with winsock.h?
|
winsock2.h - Possible to merge with winsock.h?
|
||||||
|
@ -150,8 +150,9 @@ xuninstall-libraries:
|
|||||||
|
|
||||||
xuninstall-headers:
|
xuninstall-headers:
|
||||||
@for i in $(HEADERS); do \
|
@for i in $(HEADERS); do \
|
||||||
rm -f $(tooldir)/include/$$i ; \
|
rm -r $(tooldir)/include/w32api/$$i ; \
|
||||||
done
|
done
|
||||||
|
rmdir $(tooldir)/include/w32api
|
||||||
|
|
||||||
# install headers and libraries
|
# install headers and libraries
|
||||||
install: install-libraries install-headers
|
install: install-libraries install-headers
|
||||||
@ -179,8 +180,9 @@ uninstall-libraries:
|
|||||||
|
|
||||||
uninstall-headers:
|
uninstall-headers:
|
||||||
@for i in $(HEADERS); do \
|
@for i in $(HEADERS); do \
|
||||||
rm -f $(exec_prefix)/include/$$i ; \
|
rm -f $(exec_prefix)/include/w32api/$$i ; \
|
||||||
done
|
done
|
||||||
|
rmdir $(exec_prefix)/include/w32api
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
mkdir $(distdir)/include
|
mkdir $(distdir)/include
|
||||||
|
Loading…
x
Reference in New Issue
Block a user