src/fuse/makefile 1.3
1.3 2010/03/09 05:59:51 angie
Moving the USE_FUSE addition of L += -lfuse to just this directory, so execs created in the rest of the tree don't crash on machines that don't have libfuse.
Index: src/fuse/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/fuse/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/fuse/makefile 3 Nov 2009 01:20:40 -0000 1.2
+++ src/fuse/makefile 9 Mar 2010 05:59:51 -0000 1.3
@@ -1,16 +1,17 @@
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
# clean would be redundant with top-level makefile's (find & rm .o's)