From: <tr...@us...> - 2002-08-31 13:06:56
|
Update of /cvsroot/basedb/basedb/exec/source/clustering In directory usw-pr-cvs1:/tmp/cvs-serv19361 Modified Files: Makefile Log Message: Added unpacking and compiling of Cgraph Index: Makefile =================================================================== RCS file: /cvsroot/basedb/basedb/exec/source/clustering/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 20 Aug 2002 19:39:54 -0000 1.7 --- Makefile 31 Aug 2002 13:06:54 -0000 1.8 *************** *** 1,4 **** BINARIES = basehclust findsubtree drawmatrix drawgenetree drawassaytree ! FILES = $(BINARIES) clusteringscript clusteringscript cgraphdir = Cgraph --- 1,4 ---- BINARIES = basehclust findsubtree drawmatrix drawgenetree drawassaytree ! FILES = $(BINARIES) clusteringscript cgraphdir = Cgraph *************** *** 58,71 **** cp $(FILES) ../../apps # Dependencies for executables ! basehclust: $(OBJ_BHC) $(CC) -o $@ $(OBJ_BHC) $(LDFLAGS) ! findsubtree: $(OBJ_FST) $(CC) -o $@ $(OBJ_FST) $(LDFLAGS) ! drawmatrix: $(OBJ_DM) $(CC) -o $@ $(OBJ_DM) $(LDFLAGS) ! drawgenetree: $(OBJ_DGT) $(CC) -o $@ $(OBJ_DGT) $(LDFLAGS) ! drawassaytree: $(OBJ_DAT) $(CC) -o $@ $(OBJ_DAT) $(LDFLAGS) --- 58,75 ---- cp $(FILES) ../../apps + Cgraph: Cgraph2.04-working.tar.gz + tar -xzvf Cgraph2.04-working.tar.gz + make -C Cgraph + # Dependencies for executables ! basehclust: $(cgraphdir) $(OBJ_BHC) $(CC) -o $@ $(OBJ_BHC) $(LDFLAGS) ! findsubtree: $(cgraphdir) $(OBJ_FST) $(CC) -o $@ $(OBJ_FST) $(LDFLAGS) ! drawmatrix: $(cgraphdir) $(OBJ_DM) $(CC) -o $@ $(OBJ_DM) $(LDFLAGS) ! drawgenetree: $(cgraphdir) $(OBJ_DGT) $(CC) -o $@ $(OBJ_DGT) $(LDFLAGS) ! drawassaytree: $(cgraphdir) $(OBJ_DAT) $(CC) -o $@ $(OBJ_DAT) $(LDFLAGS) |