r1758: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 7 Apr 2002 08:09:17 +0000 (08:09 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 7 Apr 2002 08:09:17 +0000 (08:09 +0000)
Makefile

index 4bd707ef6e39a51540e305fdabaccec4b7bd6305..e3919eb23236d483eca3fbafec78375da5e9b621 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.33 2002/04/07 07:55:26 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.34 2002/04/07 08:09:17 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 docs tagcvs dist
+.PHONY: all clean realclean doc tagcvs dist
 
 all: 
 
@@ -23,12 +23,13 @@ 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 {} \;
 
-docs:
-       @(cd doc; make dist-doc)
+doc:
+       $(MAKE) -C doc dist-doc
 
 VERSION=$(shell cat VERSION)
 DISTDIR=$(PKG)-$(VERSION)