Skip to content

Commit

Permalink
update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
pengjia authored and pengjia committed Jul 9, 2019
1 parent b3e4468 commit 5a950da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ SOURCE = cmds scan distribution refseq polyscan param utilities homo window bamr
OBJS= $(patsubst %,%.o,$(SOURCE))

%.o:%.cpp
$(CXX) -std=c++11 $(CXXFLAGS) $(INCLUDES) -c $< -o $@
$(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@

all: samtools msisensor-pro

samtools:
$(MAKE) -C ${SAMTOOLS_ROOT}

msisensor-pro: $(OBJS)
$(CXX) -std=c++11 $^ $(CXXFLAGS) $(LDFLAGS) $(LIBS) -o $@
$(CXX) $^ $(CXXFLAGS) $(LDFLAGS) $(LIBS) -o $@

clean:
rm -f *.o msisensor-pro
Expand Down

0 comments on commit 5a950da

Please sign in to comment.