Skip to content

Commit

Permalink
modified: makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hsinnan75 committed Sep 28, 2019
1 parent 1ad89da commit b9fdf32
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
.KEEP_STAT:

all: htslib index main
all: MapCaller bwt_index

MapCaller: htslib
make -C src
mv src/$@ .

htslib:
make -C src/htslib

main:
make -C src && mv src/MapCaller .

index:
make -C BWT_Index && mv BWT_Index/bwt_index .
bwt_index:
make -C BWT_Index
mv BWT_Index/$@ .

clean:
rm -f MapCaller bwt_index
Expand Down

0 comments on commit b9fdf32

Please sign in to comment.