src/fuse/udcFuse/makefile 1.2

1.2 2009/11/10 06:30:03 angie
Don't add -lfuse here, leave that to common.mk if USE_FUSE==1.
Index: src/fuse/udcFuse/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/fuse/udcFuse/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/fuse/udcFuse/makefile	3 Nov 2009 01:04:20 -0000	1.1
+++ src/fuse/udcFuse/makefile	10 Nov 2009 06:30:03 -0000	1.2
@@ -1,18 +1,18 @@
 include ../../inc/common.mk
 
-L += -lm -lfuse
+L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 A = udcFuse
 O = udcFuse.o
 
 udcFuse: ${O} ${MYLIBS}
 	${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: ${O}
 	${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
 
 clean::
 	rm -f ${A} ${O}