src/fuse/makefile 1.1

1.1 2009/11/03 01:18:32 angie
Hooking udcFuse into top-level build
Index: src/fuse/makefile
===================================================================
RCS file: src/fuse/makefile
diff -N src/fuse/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/fuse/makefile	3 Nov 2009 01:18:32 -0000	1.1
@@ -0,0 +1,13 @@
+include ../inc/common.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
+