fix: re-add osp-bits

This commit is contained in:
kuoi 2023-04-14 02:23:12 +08:00
parent fe1d5a834e
commit e43f849064
2 changed files with 51 additions and 1 deletions

50
src/bap/osp-bits/makefile Normal file
View File

@ -0,0 +1,50 @@
#
# Makefile for osp (oligo selection program) - Alpha version
#
#
# Programs made by this makefile
#
PROGS = subosp
#
# Where the wild things are
#
SRC = .
#
# X VERSION compilation flag
#
VERSION = SUBVERSION
#
# Compiler - debug on
#
CC= cc
CFLAGS= -g -D$(VERSION)
#
# Object files
#
XOSPOBJS= our_allo.o analysis.o get_scores.o paramIO.o paramIOX.o utils.o
#
# Linking
#
subosp: $(XOSPOBJS)
#
# Miscellaneous
#
all: $(PROGS)
clean:
rm -f $(PROGS) $(OSPOBJS) *~
%.o: $(SRC)/%.c
$(CC) $(CFLAGS) -c $<

View File

@ -23,7 +23,7 @@ VERSION = SUBVERSION
# Compiler - debug on
#
CC= cc
CFLAGS= -g -D$(VERSION)
CFLAGS= -g -non_shared -std1 -ieee_with_inexact -D$(VERSION)
#