232074610513870c470c1263d3c46ff9b4ac3450
hiram
  Tue Apr 2 17:22:55 2013 -0700
minimal makefiles now in place for kentUtils build refs #9104
diff --git src/hg/liftAcross/makefile src/hg/liftAcross/makefile
index f03a1ca..3acb1e3 100644
--- src/hg/liftAcross/makefile
+++ src/hg/liftAcross/makefile
@@ -1,21 +1,9 @@
-include ../../inc/common.mk
-
-L += ${MYSQLLIBS} -lm
-MYLIBDIR = ../../lib/${MACHTYPE}
-MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
-
-O = liftAcross.o
-
-liftAcross: $O ${MYLIBS}
-	${CC} ${COPT} -o ${BINDIR}/liftAcross $O ${MYLIBS} $L
-	${STRIP} ${BINDIR}/liftAcross${EXE}
-
-compile:	${O}
-	${CC} ${COPT} -o liftAcross $O ${MYLIBS} $L
+kentSrc = ../..
+A = liftAcross
+include $(kentSrc)/inc/userApp.mk
 
 test:
-	(cd tests && ${MAKE})
+	cd tests && ${MAKE}
 
-clean:
-	rm -f $O liftAcross
-	(cd tests && ${MAKE} clean)
+clean::
+	cd tests && ${MAKE} clean