Skip to content

Commit

Permalink
adding LDFLAGS to the build
Browse files Browse the repository at this point in the history
  • Loading branch information
linsalrob committed Aug 3, 2020
1 parent b65b3ce commit f6d625a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ compp: prinseq++
time -v ./prinseq++ -fastq stenotrophomonas_R1.fastq -fastq2 stenotrophomonas_R2.fastq -min_len 5 -ns_max_n 2 -out_name Test_time_

prinseq++: main.o reads.o verbose.o
$(CXX) main.o reads.o verbose.o $(CXXFLAGS) $(LIBS) -o prinseq++
$(CXX) main.o reads.o verbose.o $(CXXFLAGS) $(LDFLAGS) $(LIBS) -o prinseq++
# $(CXX) main.o reads.o verbose.o $(CXXFLAGS) $(LIBS) -o prinseq++

main.o: main.cpp reads.h bloom_filter.hpp verbose.h
reads.o: reads.cpp reads.h
Expand Down

0 comments on commit f6d625a

Please sign in to comment.