391f8a18b3796e2b03ed96d20b532ad238bc9dbb
hiram
  Tue Apr 2 13:43:00 2013 -0700
moving to minimal makefiles for kentUtils build refs #9104
diff --git src/utils/convolve/makefile src/utils/convolve/makefile
index 9b90c70..3896f45 100644
--- src/utils/convolve/makefile
+++ src/utils/convolve/makefile
@@ -1,21 +1,7 @@
-include ../../inc/common.mk
-
-L += -lm 
-MYLIBDIR = ../../lib/${MACHTYPE}
-MYLIBS =  ${MYLIBDIR}/jkweb.a
-
-all::	convolve
-
-O = convolve.o
-
+kentSrc = ../..
 A = convolve
-
-$A: $O ${MYLIBS}
-	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/${A} $O ${MYLIBS} $L
-	${STRIP} ${BINDIR}/${A}${EXE}
+include $(kentSrc)/inc/userApp.mk
+L += -lm 
 
 test:
 	cd tests && ./runtest
-
-clean:
-	rm -f $O