src/hg/instinct/makefile 1.14

1.14 2009/07/30 17:31:35 fanhsu
Removed instinctMember from makefile to avoid ssl lib conflict.
Index: src/hg/instinct/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -b -B -U 1000000 -r1.13 -r1.14
--- src/hg/instinct/makefile	27 Jan 2009 23:53:52 -0000	1.13
+++ src/hg/instinct/makefile	30 Jul 2009 17:31:35 -0000	1.14
@@ -1,31 +1,30 @@
 # Build all directories in utils
 
 include ../../inc/common.mk
 
 # List of directories to build
 USE_DIRS = $(DIRS)
 
 DIRS = \
 	lib \
 	hgHeatmap2 \
 	mapProbesToGenes \
 	genTables \
 	ispySubj \
-	instinctMember \
 	tcgaSubj \
 	subjectView \
 
 all::    compile
 
 compile: ${USE_DIRS:%=%.compile}
 %.compile:
 	(cd $* && echo $* && $(MAKE) compile)
 
 my: ${USE_DIRS:%=%.my}
 %.my:
 	(cd $* && echo $* && $(MAKE))
 
 clean:  ${USE_DIRS:%=%.clean}
 %.clean:
 	(cd $* && echo $* && $(MAKE) clean)