e0fa0d154d7c8a3068bdfcd0668ca09b2f57a464 hiram Fri Aug 22 18:33:24 2025 -0700 initial prototype for a liftOver end point - need to get some of the hgConvert code into a library - refs #35976 diff --git src/hg/hubApi/makefile src/hg/hubApi/makefile index edf309f4c01..2db42eba4db 100644 --- src/hg/hubApi/makefile +++ src/hg/hubApi/makefile @@ -1,26 +1,26 @@ kentSrc = ../.. include ../../inc/common.mk cgiApi = /usr/local/apache/cgi-bin-api L += ${HALLIBS} $(MYSQLLIBS) -lm MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = $(MYLIBDIR)/jkhgapcgi.a $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a A = hubApi -O = hubApi.o getData.o apiUtils.o list.o search.o findGenome.o +O = hubApi.o getData.o apiUtils.o list.o search.o findGenome.o liftOver.o A = hubApi include ../../inc/cgi_build_rules.mk compile:: $O ${CC} $O ${MYLIBS} ${L} mv ${AOUT} $A${EXE} # building your own sandbox also copies result to cgiApi directory # if it exists my:: if [ -d ${cgiApi} ]; then rm -f ${cgiApi}/$A; cp -p ${CGI_BIN_USER}/$A ${cgiApi}/$A; fi