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