src/hg/utils/makefile 1.20

1.20 2010/02/08 03:13:51 markd
moved pslUniq out of complelely unrelated directory
Index: src/hg/utils/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/utils/makefile,v
retrieving revision 1.19
retrieving revision 1.20
diff -b -B -U 1000000 -r1.19 -r1.20
--- src/hg/utils/makefile	3 Dec 2009 21:39:51 -0000	1.19
+++ src/hg/utils/makefile	8 Feb 2010 03:13:51 -0000	1.20
@@ -1,61 +1,62 @@
 # Build all directories in utils
 # test comment
 # 	$Id$
 
 include ../../inc/common.mk
 
 
 SCRIPT_FILES = \
 	dumpDb.pl \
 	mergeOverlapBed4.pl
 
 # List of directories to build
 USE_DIRS = $(DIRS)
 
 DIRS = \
 	bedWeedOverlapping \
 	chromGraphFromBin \
 	chromGraphToBin \
 	crTreeIndexBed \
 	crTreeSearchBed \
 	gapToLift \
 	oligoMatch \
 	positionalTblCheck \
 	safePush \
 	toDev64 \
 	twoBitMask \
 	gff3ToGenePred \
 	automation \
 	refreshNamedSessionCustomTracks \
 	refSeqGet \
 	tdbQuery \
-	wigBedToStep
+	wigBedToStep \
+	pslUniq
 
 TEST_DIRS = \
 	gff3ToGenePred \
 	refSeqGet
 
 
 all:: utils
 
 utils: $(USE_DIRS:%=%.utils)
 %.utils:
 	(cd $* && $(MAKE))
 
 scripts: $(SCRIPT_FILES:%=%.scripts)
 %.scripts:
 	chmod +x $*
 	rm -f ${SCRIPTS}/$*
 	cp -p $* ${SCRIPTS}/$*
 
 alpha: scripts all
 
 test::	${TEST_DIRS:%=%.test}
 %.test:
 	(cd $* && ${MAKE} test)
 
 clean:: $(USE_DIRS:%=%.clean)
 	- find . -name '*.o' -exec rm {} \;
 %.clean:
 	(cd $* && ${MAKE} clean)