src/fuse/udcFuse/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/udcFuse/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/fuse/udcFuse/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/fuse/udcFuse/makefile 10 Nov 2009 06:30:03 -0000 1.2
+++ src/fuse/udcFuse/makefile 9 Mar 2010 05:59:51 -0000 1.3
@@ -1,18 +1,19 @@
include ../../inc/common.mk
+include ../fuse.mk
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}