fix: compile all

This commit is contained in:
kuoi 2023-04-14 02:02:58 +08:00
parent 3b42fb10b0
commit 82b82d9e1d
43 changed files with 15 additions and 11 deletions

Binary file not shown.

BIN
bin/bap

Binary file not shown.

Binary file not shown.

BIN
bin/cop

Binary file not shown.

Binary file not shown.

BIN
bin/dap

Binary file not shown.

BIN
bin/frog

Binary file not shown.

Binary file not shown.

BIN
bin/gip

Binary file not shown.

BIN
bin/lip

Binary file not shown.

Binary file not shown.

BIN
bin/mep

Binary file not shown.

BIN
bin/nip

Binary file not shown.

BIN
bin/nipf

Binary file not shown.

BIN
bin/nipl

Binary file not shown.

BIN
bin/pip

Binary file not shown.

BIN
bin/pipl

Binary file not shown.

BIN
bin/rep

Binary file not shown.

BIN
bin/sap

Binary file not shown.

BIN
bin/sapf

Binary file not shown.

Binary file not shown.

BIN
bin/sip

Binary file not shown.

BIN
bin/sipl

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
bin/ted

Binary file not shown.

Binary file not shown.

BIN
bin/vep

Binary file not shown.

BIN
bin/xbap

Binary file not shown.

BIN
bin/xdap

Binary file not shown.

BIN
bin/xmep

Binary file not shown.

BIN
bin/xnip

Binary file not shown.

BIN
bin/xpip

Binary file not shown.

BIN
bin/xsap

Binary file not shown.

BIN
bin/xsip

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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

View File

@ -6,7 +6,7 @@
# Programs made by this makefile
#
PROGS = cop cop-bap
all: $(PROGS)
#
# Where the wild things are
#

View File

@ -23,7 +23,7 @@
# Programs made by this makefile
#
PROGS = getMCH trace2seq
all: $(PROGS)
#
# Where the wild things are
#

View File

@ -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);
}

View File

@ -2,6 +2,7 @@
# indexseqlibs - Alpha version
#
all: $(PROGS)
#
# Programs need making