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