6ee08e1c05fbac92e545429f446d75b441c6c370
angie
  Thu Nov 3 12:55:15 2016 -0700
Fixing dependency so web.o is rebuilt when jWestBanner.h is rebuilt.

diff --git src/hg/lib/makefile src/hg/lib/makefile
index f3cd0c0..fee93fe 100644
--- src/hg/lib/makefile
+++ src/hg/lib/makefile
@@ -119,30 +119,30 @@
 ifeq (${GBROWSE}, 1)
   GBROWSE_D=-DGBROWSE
 else
   GBROWSE_D=
 endif
 
 %.o: %.c
 	${CC} ${COPT} ${CFLAGS} ${GBROWSE_D} ${LOWELAB_DEFS} ${HG_DEFS} ${HG_WARN} ${HG_INC} ${XINC} -o $@ -c $<
 
 ../../lib/$(MACHTYPE)/jkhgap.a: $(O)
 	ar rcus ../../lib/$(MACHTYPE)/jkhgap.a $(O)
 
 jWestBanner.h: jWestBanner.html
 	sed -e 's/\\/\\\\/g; s/"/\\"/g; s/^/"/; s/$$/\\n"/;' jWestBanner.html > jWestBanner.h
 
-web.c: jWestBanner.h
+web.o: jWestBanner.h
 
 clean:
 	rm -f $(O);
 	rm -f jWestBanner.h
 	rm -f ../../lib/$(MACHTYPE)/jkhgap.a;
 
 ctags:
 	ctags *.c *.h ../inc/*.h ../lib/*.c ../../inc/*.h ../../lib/*.c ../inc/encode/*.h ../lib/encode/*.c
 
 tags:
 	etags *.c *.h ../inc/*.h ../lib/*.c ../../inc/*.h ../../lib/*.c ../inc/encode/*.h ../lib/encode/*.c
 
 test:
 	cd tests && ${MAKE} test