fix: compile all
This commit is contained in:
parent
3b42fb10b0
commit
82b82d9e1d
43 changed files with 15 additions and 11 deletions
BIN
bin/alfsplit
BIN
bin/alfsplit
Binary file not shown.
BIN
bin/bap
BIN
bin/bap
Binary file not shown.
BIN
bin/convert
BIN
bin/convert
Binary file not shown.
BIN
bin/cop
BIN
bin/cop
Binary file not shown.
BIN
bin/cop-bap
BIN
bin/cop-bap
Binary file not shown.
BIN
bin/dap
BIN
bin/dap
Binary file not shown.
BIN
bin/frog
BIN
bin/frog
Binary file not shown.
Binary file not shown.
BIN
bin/gip
BIN
bin/gip
Binary file not shown.
BIN
bin/lip
BIN
bin/lip
Binary file not shown.
BIN
bin/makeSCF
BIN
bin/makeSCF
Binary file not shown.
BIN
bin/mep
BIN
bin/mep
Binary file not shown.
BIN
bin/nip
BIN
bin/nip
Binary file not shown.
BIN
bin/nipf
BIN
bin/nipf
Binary file not shown.
BIN
bin/nipl
BIN
bin/nipl
Binary file not shown.
BIN
bin/pip
BIN
bin/pip
Binary file not shown.
BIN
bin/pipl
BIN
bin/pipl
Binary file not shown.
BIN
bin/rep
BIN
bin/rep
Binary file not shown.
BIN
bin/sap
BIN
bin/sap
Binary file not shown.
BIN
bin/sapf
BIN
bin/sapf
Binary file not shown.
BIN
bin/sethelp
BIN
bin/sethelp
Binary file not shown.
BIN
bin/sip
BIN
bin/sip
Binary file not shown.
BIN
bin/sipl
BIN
bin/sipl
Binary file not shown.
BIN
bin/splitp1
BIN
bin/splitp1
Binary file not shown.
BIN
bin/splitp2
BIN
bin/splitp2
Binary file not shown.
BIN
bin/splitp3
BIN
bin/splitp3
Binary file not shown.
BIN
bin/ted
BIN
bin/ted
Binary file not shown.
BIN
bin/trace2seq
BIN
bin/trace2seq
Binary file not shown.
BIN
bin/vep
BIN
bin/vep
Binary file not shown.
BIN
bin/xbap
BIN
bin/xbap
Binary file not shown.
BIN
bin/xdap
BIN
bin/xdap
Binary file not shown.
BIN
bin/xmep
BIN
bin/xmep
Binary file not shown.
BIN
bin/xnip
BIN
bin/xnip
Binary file not shown.
BIN
bin/xpip
BIN
bin/xpip
Binary file not shown.
BIN
bin/xsap
BIN
bin/xsap
Binary file not shown.
BIN
bin/xsip
BIN
bin/xsip
Binary file not shown.
BIN
src/abi/2rs
BIN
src/abi/2rs
Binary file not shown.
Binary file not shown.
|
@ -5,7 +5,8 @@
|
|||
#
|
||||
# Programs made by this makefile
|
||||
#
|
||||
PROGS = getABISampleName
|
||||
PROGS = getABISampleName 2rs
|
||||
all: $(PROGS)
|
||||
|
||||
#
|
||||
# Where the wild things are
|
||||
|
@ -26,6 +27,8 @@ LDFLAGS = -g
|
|||
getABISampleName: getABISampleName.o
|
||||
$(LD) $(LDFLAGS) -o getABISampleName getABISampleName.o
|
||||
|
||||
2rs: 2rs.o
|
||||
$(LD) $(LDFLAGS) -o 2rs 2rs.o
|
||||
|
||||
#
|
||||
# Special dependencies
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# Programs made by this makefile
|
||||
#
|
||||
PROGS = cop cop-bap
|
||||
|
||||
all: $(PROGS)
|
||||
#
|
||||
# Where the wild things are
|
||||
#
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
# Programs made by this makefile
|
||||
#
|
||||
PROGS = getMCH trace2seq
|
||||
|
||||
all: $(PROGS)
|
||||
#
|
||||
# Where the wild things are
|
||||
#
|
||||
|
|
|
@ -13,7 +13,7 @@ static FILE *out;
|
|||
|
||||
static int line_comp(char *ex, char *in, int l)
|
||||
/*
|
||||
** Compare exclude line with inline
|
||||
** Compare exclude line with cinline
|
||||
*/
|
||||
{
|
||||
return strncmp(ex,in+11,l);
|
||||
|
@ -28,13 +28,13 @@ static void process()
|
|||
*/
|
||||
{
|
||||
char exline[MAXLINE];
|
||||
char inline[MAXLINE];
|
||||
char cinline[MAXLINE];
|
||||
char *exok, *inok;
|
||||
int compare;
|
||||
|
||||
|
||||
exok = fgets(exline,MAXLINE,ex);
|
||||
inok = fgets(inline,MAXLINE,in);
|
||||
inok = fgets(cinline,MAXLINE,in);
|
||||
|
||||
while (exok && inok) {
|
||||
|
||||
|
@ -43,15 +43,15 @@ static void process()
|
|||
if (compare < 0)
|
||||
exok = fgets(exline,MAXLINE,ex);
|
||||
else if (compare > 0) {
|
||||
fprintf(out,"%s",inline);
|
||||
inok = fgets(inline,MAXLINE,in);
|
||||
fprintf(out,"%s",cinline);
|
||||
inok = fgets(cinline,MAXLINE,in);
|
||||
} else
|
||||
inok = fgets(inline,MAXLINE,in);
|
||||
inok = fgets(cinline,MAXLINE,in);
|
||||
|
||||
}
|
||||
|
||||
while (inok = fgets(inline,MAXLINE,in))
|
||||
fprintf(out,"%s",inline);
|
||||
while (inok = fgets(cinline,MAXLINE,in))
|
||||
fprintf(out,"%s",cinline);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# indexseqlibs - Alpha version
|
||||
#
|
||||
|
||||
all: $(PROGS)
|
||||
|
||||
#
|
||||
# Programs need making
|
||||
|
|
Loading…
Reference in a new issue