6894b3e9c5590a37147afd1485f21f07285c7ed1
galt
  Mon Sep 19 17:10:21 2016 -0700
Renamed phyloGif to phloPng for greater accuracy in the name. Because when we switched to PNG, only 16-bit color palettes are supported now. We lost the ability to do 8-bit color palette which is needed by GIF.

diff --git src/hg/phyloGif/makefile src/hg/phyloGif/makefile
deleted file mode 100644
index 58c1849..0000000
--- src/hg/phyloGif/makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-kentSrc = ../..
-include ../../inc/common.mk
-
-L += $(MYSQLLIBS) -lm
-MYLIBDIR = ../../lib/${MACHTYPE}
-MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
-
-A = phyloGif
-
-O = ${A}.o
-
-include ../../inc/cgi_build_rules.mk
-
-my:: compile
-	if [ -d "${BINDIR}" ] && [ ! ${CGI_BIN}-${USER}/$A -ef ${DESTDIR}${BINDIR}/$A ] ; then \
-	    cp ${CGI_BIN}-${USER}/$A ${DESTDIR}${BINDIR}/; \
-	fi
-
-compile: $O
-	${CC} $O ${MYLIBS} ${L}
-	mv ${AOUT} $A${EXE}
-	chmod a+rx $A${EXE}
-
-test: compile
-	${DESTDIR}${BINDIR}/phyloGif -phyloGif_tree=17way.nh > test.gif
-	file test.gif
-
-testWeb: compile
-	wget -O testWeb.gif 'http://hgwdev.cse.ucsc.edu/cgi-bin/phyloGif?phyloGif_tree=(A:0.1,B:0.1);'
-	file testWeb.gif
-
-clean::
-	rm -f test.gif testWeb.gif