src/fuse/udcFuse/makefile 1.1

1.1 2009/11/03 01:04:20 angie
First cut, mostly works but performance is not yet satisfactory.
Index: src/fuse/udcFuse/makefile
===================================================================
RCS file: src/fuse/udcFuse/makefile
diff -N src/fuse/udcFuse/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/fuse/udcFuse/makefile	3 Nov 2009 01:04:20 -0000	1.1
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm -lfuse
+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}