adaefb41c47c8ed44b75ad2793770bae5070e71b
hiram
  Fri Jun 18 20:36:26 2010 -0700
last bunch of makefiles that need a clean target
diff --git src/gfServer/makefile src/gfServer/makefile
index 847e243..97ee709 100644
--- src/gfServer/makefile
+++ src/gfServer/makefile
@@ -1,26 +1,29 @@
 include ../inc/common.mk
 
 L += -lm $(SOCKETLIB)
 MYLIBDIR = ../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkOwnLib.a $(MYLIBDIR)/jkweb.a 
 
 O = gfServer.o
 X = gfServer
 
 gfServer: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
 	${STRIP} ${BINDIR}/$X${EXE}
 
 test:
 	${MKDIR} tests/output
 	$X direct tests/input/mCrea.mrna tests/input/hCreaGeno.nib \
 		tests/input/mCreaGeno.nib > tests/output/testNib
 	$X direct tests/input/mCrea.mrna tests/input/creaGeno.2bit \
 		>tests/output/testTwoBit
 	cd tests && ./testProtNib output/testProtNib
 	cd tests && ./testProtTwoBit output/testProtTwoBit
 	cd tests && ./testTransNib output/testTransNib
 	cd tests && ./testTransTwoBit output/testTransTwoBit
 	cd tests && ./testPcr output/testPcr
 	diff -r -x CVS tests/expected tests/output
 	rm -r tests/output
+
+clean::
+	rm -fr ${O} tests/output