* 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>
|
||||
|
||||
* lib/Makefile.in: Install header files in w32api subdirectory.
|
||||
|
@ -58,7 +58,7 @@ FLAGS_TO_PASS = \
|
||||
SUBDIRS = lib
|
||||
|
||||
PACKAGE = w32api
|
||||
VERSION = 0.3
|
||||
VERSION = 0.4
|
||||
|
||||
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
||||
install-sh README ChangeLog TODO CONTRIBUTIONS
|
||||
@ -83,7 +83,9 @@ install uninstall:
|
||||
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
|
||||
dist:
|
||||
dist: srcdist bindist
|
||||
|
||||
srcdist:
|
||||
rm -rf $(distdir)
|
||||
mkdir $(distdir)
|
||||
chmod 755 $(distdir)
|
||||
@ -109,17 +111,16 @@ Makefile: Makefile.in config.status configure
|
||||
|
||||
mostlyclean-top:
|
||||
rm -f *~
|
||||
clean-top:
|
||||
clean-top: mostlyclean-top
|
||||
rm -rf $(distdir)
|
||||
rm -f $(distdir)*.tar.gz
|
||||
maintainer-clean-top:
|
||||
|
||||
mostlyclean: mostlyclean-top mostlyclean-subdirs
|
||||
clean: mostlyclean-top clean-subdirs
|
||||
distclean: clean-top
|
||||
rm -f Makefile config.status config.log config.cache TAGS *~
|
||||
rm -f include/*~
|
||||
rm -f $(distdir)*.tar.gz
|
||||
$(MAKE) -C lib distclean
|
||||
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?**
|
||||
|
||||
winsock2.h - Possible to merge with winsock.h?
|
||||
|
@ -150,8 +150,9 @@ xuninstall-libraries:
|
||||
|
||||
xuninstall-headers:
|
||||
@for i in $(HEADERS); do \
|
||||
rm -f $(tooldir)/include/$$i ; \
|
||||
rm -r $(tooldir)/include/w32api/$$i ; \
|
||||
done
|
||||
rmdir $(tooldir)/include/w32api
|
||||
|
||||
# install headers and libraries
|
||||
install: install-libraries install-headers
|
||||
@ -179,8 +180,9 @@ uninstall-libraries:
|
||||
|
||||
uninstall-headers:
|
||||
@for i in $(HEADERS); do \
|
||||
rm -f $(exec_prefix)/include/$$i ; \
|
||||
rm -f $(exec_prefix)/include/w32api/$$i ; \
|
||||
done
|
||||
rmdir $(exec_prefix)/include/w32api
|
||||
|
||||
dist:
|
||||
mkdir $(distdir)/include
|
||||
|
Loading…
Reference in New Issue
Block a user