Skip to content

Commit

Permalink
Makefile: add LDFLAGS variables
Browse files Browse the repository at this point in the history
add support for LDFLAGS variables for hardening hifiasm binary
  • Loading branch information
kbipinkumar authored Jul 23, 2023
1 parent 30d2ee0 commit 3b1e53e
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 @@ -28,7 +28,7 @@ endif
all:$(EXE)

$(EXE):$(OBJS) main.o
$(CXX) $(CXXFLAGS) $^ -o $@ $(LIBS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)

clean:
rm -fr gmon.out *.o a.out $(EXE) *~ *.a *.dSYM
Expand Down Expand Up @@ -79,4 +79,4 @@ tovlp.o: tovlp.h
inter.o: inter.h Process_Read.h
kalloc.o: kalloc.h
gfa_ut.o: Overlaps.h
gchain_map.o: gchain_map.h
gchain_map.o: gchain_map.h

0 comments on commit 3b1e53e

Please sign in to comment.