7033f67074594c3d9cc3487f079456928fdf3260 angie Tue Apr 12 13:46:14 2016 -0700 Major change to hgGateway: the contents are replaced by a new page designed by a graphic artist. It has icons for selecting popular species, an autocomplete input for typing in species or common names, as well as a phylogenetic tree display that shows the relationships of the species that we host. It has a menu for selecting the assembly of the selected species' genome and the usual assembly description. refs #15277 diff --git src/hg/hgGateway/makefile src/hg/hgGateway/makefile index b5f7d99..7ee7d4e 100644 --- src/hg/hgGateway/makefile +++ src/hg/hgGateway/makefile @@ -1,17 +1,27 @@ include ../../inc/common.mk HG_WARN=-Wall L += -lm ${MYSQLLIBS} MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a A = hgGateway O = $A.o include ../../inc/cgi_build_rules.mk -compile: $O +hgGateway.html.h: hgGateway.html + sed -e 's/\\/\\\\/g; s/"/\\"/g; s/^/"/; s/$$/\\n"/;' hgGateway.html > hgGateway.html.h + +${A}.c: hgGateway.html.h + +${A}.o: ${A}.c hgGateway.html.h + +clean:: + rm -f hgGateway.html.h + +compile:: $O ${CC} $O ${MYLIBS} ${L} mv ${AOUT} $A${EXE}