fix: re-add osp-bits
This commit is contained in:
parent
fe1d5a834e
commit
e43f849064
2 changed files with 51 additions and 1 deletions
50
src/bap/osp-bits/makefile
Normal file
50
src/bap/osp-bits/makefile
Normal 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 $<
|
||||
|
|
@ -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)
|
||||
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue