6a9fee7fc8a682f48125eec21ea4fa767c8b6cab chmalee Fri Jan 17 10:58:20 2025 -0800 Fix hgHubConnect hook targets to use '${MAKE}' instead of 'make' diff --git src/hg/hgHubConnect/makefile src/hg/hgHubConnect/makefile index ff09894..6418d85 100644 --- src/hg/hgHubConnect/makefile +++ src/hg/hgHubConnect/makefile @@ -1,19 +1,19 @@ kentSrc = ../.. include ../../inc/common.mk L += -lm ${MYSQLLIBS} MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkhgapcgi.a ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a A = hgHubConnect O = $A.o trackHubWizard.o include ../../inc/cgi_build_rules.mk compile: $O ${CC} -o $A${EXE} -g $O ${MYLIBS} ${L} - cd hooks && make + cd hooks && ${MAKE} alpha:: compile - cd hooks && make alpha + cd hooks && ${MAKE} alpha