src/hg/mouseStuff/makefile 1.22

1.22 2010/03/15 03:03:52 markd
fixed clean target to recurse correct, but it doesn't matter, since many sub-makefiles don't have clean
Index: src/hg/mouseStuff/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/mouseStuff/makefile,v
retrieving revision 1.21
retrieving revision 1.22
diff -b -B -U 4 -r1.21 -r1.22
--- src/hg/mouseStuff/makefile	10 Jul 2009 01:50:11 -0000	1.21
+++ src/hg/mouseStuff/makefile	15 Mar 2010 03:03:52 -0000	1.22
@@ -77,6 +77,7 @@
 all: ${USE_DIRS:%=%.all}
 %.all:
 	( cd $* && echo $* && ${MAKE} )
 
-clean:: ${USE_DIRS:%=%.all}
+clean:: ${USE_DIRS:%=%.clean}
+%.clean:
 	(cd $* && ${MAKE} clean)