53a520d17d725ceacf50f5eecead0c75470ce48a braney Sat Jul 29 16:13:58 2017 -0700 adding hgCollection, a tool to build custom collections of tracks diff --git src/hg/hgCollection/makefile src/hg/hgCollection/makefile new file mode 100644 index 0000000..3e33e25 --- /dev/null +++ src/hg/hgCollection/makefile @@ -0,0 +1,17 @@ +COPT=-ggdb +kentSrc = ../.. +include ../../inc/common.mk + +L += $(MYSQLLIBS) -lm +MYLIBDIR = ../../lib/${MACHTYPE} +MYLIBS = $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a + +A = hgCollection +O = hgCollection.o + +include ../../inc/cgi_build_rules.mk + +compile:: $O + ${CC} $O ${MYLIBS} ${L} + mv ${AOUT} $A${EXE} +