8bee4ca2d7d04ef2fd302394f63025c963963637
hiram
  Tue Apr 2 08:37:06 2013 -0700
minimalist makefile changes for kentUtils build refs #9104
diff --git src/fuse/makefile src/fuse/makefile
index b5d8201..f843ada 100644
--- src/fuse/makefile
+++ src/fuse/makefile
@@ -1,20 +1,35 @@
 include ../inc/common.mk
 include ./fuse.mk
 
 FUSE_DIRS = \
 	udcFuse
 
 all:    
 	@for D in $(FUSE_DIRS) x; do \
 	  if test "$$D" != "x" ; then \
 	    ( cd $$D && echo $$D && $(MAKE) ) ;\
 	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
 	    fi ;\
 	done
 
 alpha: all
 
+compile:
+	@for D in $(FUSE_DIRS) x; do \
+	  if test "$$D" != "x" ; then \
+	    ( cd $$D && echo $$D && $(MAKE) compile ) ;\
+	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
+	    fi ;\
+	done
+
+
 # clean would be redundant with top-level makefile's (find & rm .o's)
 
 clean::
 	rm -f ${O}
+	@for D in $(FUSE_DIRS) x; do \
+	  if test "$$D" != "x" ; then \
+	    ( cd $$D && echo $$D && $(MAKE) clean ) ;\
+	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
+	    fi ;\
+	done