07639647efe6cfe6dbc643b8fae13c3dd153c528
markd
  Fri Jan 17 19:07:18 2025 -0800
work on docker utils build

diff --git src/hg/utils/bedExtendRanges/makefile src/hg/utils/bedExtendRanges/makefile
index 6ab65de72c6..102cb6669de 100644
--- src/hg/utils/bedExtendRanges/makefile
+++ src/hg/utils/bedExtendRanges/makefile
@@ -1,30 +1,13 @@
 kentSrc = ../../..
-include ../../../inc/common.mk
-
-L += ${MYSQLLIBS}
-MYLIBDIR = ../../../lib/${MACHTYPE}
-MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
-
 A =  bedExtendRanges
-O = ${A}.o
+include ${kentSrc}/inc/userApp.mk
 
 GOODFILES= bed7.txt bed8.txt chromBoundaries.txt
-
-all:: $(O) $(MYLIBS)
-	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O $(MYLIBS) $L
-	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
-
-compile:: $(O) $(MYLIBS)
-	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O $(MYLIBS) $L
-
-clean::
-	rm -f $(O) ${A}
-
-test: good
+test:: good
 
 
 good:
 	@for good in $(GOODFILES); do \
 		echo "Processing test file: $$good"; \
 		${A} hg18 259 stdin < tests/$$good; \
 	done