r1762: *** empty log message ***
[uffi.git] / Makefile
index 1ba51f9f761e839a32c2ae92e3178cd381576a9b..057df6389d2af79aafac4a16b7af02cee3b9db2e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
 #  Programer:    Kevin M. Rosenberg, M.D.
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.35 2002/04/07 09:06:42 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.36 2002/04/07 09:12:35 kevin Exp $
 #
 # This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
@@ -15,7 +15,7 @@
 
 PKG=uffi
 
-.PHONY: all clean realclean distdoc tagcvs dist wwwdist
+.PHONY: all clean realclean tagcvs dist wwwdist
 
 all: 
 
@@ -23,13 +23,12 @@ clean:
        @rm -f $(PKG)-*.tar.gz $(PKG)-*.zip
        @find . -type d -name .bin |xargs rm -rf 
        @find . -type f -name \*.a -or -name \*.so |xargs rm -rf 
-       $(MAKE) -C doc clean
-
-realclean: clean
        @find . -type f -name "#*" -or -name \*~ -exec rm {} \;
+       @$(MAKE) -C doc $@
+
+distclean: clean
+       @$(MAKE) -C doc $@
 
-distdoc:
-       $(MAKE) -C doc dist-doc
 
 VERSION=$(shell cat VERSION)
 DISTDIR=$(PKG)-$(VERSION)
@@ -42,10 +41,11 @@ VERSION_UNDERSCORE=$(shell cat VERSION | tr . _)
 TAG=dist_$(VERSION_UNDERSCORE)
 
 tagcvs:
-       cvs -q rtag -d $(TAG) $(PKG)
-       cvs -q tag -F $(TAG)
+       cvs -q rtag -d $(TAG) $(PKG) > /dev/null
+       cvs -q tag -F $(TAG) /dev/null
 
-dist: realclean distdoc tagcvs
+dist: distclean tagcvs
+       $(MAKE) doc $@
        @rm -rf $(DISTDIR) $(DIST_TARBALL) $(DIST_ZIP)
        @mkdir $(DISTDIR)
        @cp -a $(SOURCE_FILES) $(DISTDIR)