623507d68d435e62ba460a992f6cb7b44280bb5c hiram Sat Feb 3 13:16:03 2024 -0800 beginning to run FULLTEXT search on asmSummary table refs #23589 diff --git src/hg/hubApi/makefile src/hg/hubApi/makefile index 5ee92c2..edf309f 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 +O = hubApi.o getData.o apiUtils.o list.o search.o findGenome.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