grabix icon indicating copy to clipboard operation
grabix copied to clipboard

Makefile gaining flexibility to allow for platform-specific hardening

Open smoe opened this issue 11 years ago • 0 comments

--- grabix-0.0~git20130718.orig/Makefile +++ grabix-0.0~git20130718/Makefile @@ -1,2 +1,7 @@ +LDFLAGS+= -lstdc++ -lz +CFLAGS+=-Wall all:

  •   gcc -Wall -O2 -o grabix grabix.cpp bgzf.c -lstdc++ -lz
    
  •   gcc $(CFLAGS) -o grabix grabix.cpp bgzf.c $(LDFLAGS)
    
    +clean:
  •   rm -f grabix
    

smoe avatar Jul 18 '13 14:07 smoe