a5dda1b5757fd242c21333f2a3eae39c47a64505
galt
  Thu Mar 4 20:33:23 2010 -0800
fixed bug with calling makeDiffAndSplit in wrong loopfixed tempfilename in case multiple users run it at same time
added main index page
made titles and headers consistent
removed sed to clean weird unwanted context lines saving 20 seconds

diff --git makefile makefile
index 806c158..d593855 100644
--- makefile
+++ makefile
@@ -1,41 +1,40 @@
 
 JKSRCDIR = ../../kent/src
 JKLIBDIR = $(JKSRCDIR)/lib/$(MACHTYPE)
 
 EXE = git-reports
 
 .c.o:
 	gcc -ggdb -Wimplicit -DDEBUG -Wall -I$(JKSRCDIR)/inc -I$(JKSRCDIR)/hg/inc -c $*.c
 
 L = $(MYSQLLIBS) -lm
 MYLIBS = $(JKLIBDIR)/jkhgap.a $(JKLIBDIR)/jkweb.a 
 
 
 all: $(EXE)
 
 
 O = $(EXE).o
 
 $(EXE): $O 
 	gcc $O $(MYLIBS) $L -o $(EXE)
 	chmod a+rx $(EXE)
 	#strip $(EXE)
 	#cp $(EXE) $(HOME)/bin/$(MACHTYPE)
 	
 
 test: $(EXE)
 	$(EXE) v223_branch v224_branch 2010-01-05 2010-01-19 v224 /cluster/bin/build/buildrepo /cluster/home/galt/public_html/git-reports review
-	#$(EXE) -verbose=2 v223_branch v224_branch 2010-01-05 2010-01-19 v224 /cluster/bin/build/buildrepo /cluster/home/galt/public_html/git-reports review
 	# note can use -verbose=2
 
 backup:
 	date +%Y-%m-%d-%H-%M | gawk '{printf("zip -r $(EXE)%s.zip *\n",$$1);}' > tempX
 	chmod 755 tempX
 	./tempX
 	rm tempX 
 	scp *.zip screech:/scratch/backups/
 	rm *.zip
 
 clean:
 	rm -f *.o $(EXE) *.tmp