Advertisement
Guest User

Untitled

a guest
Sep 24th, 2021
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. CC=g++ -g -static -static-libgcc -static-libstdc++
  2. CFLAGS=-O2 -march=x86-64 #-W -Wall
  3. OPT=#-fast #-mtune=native #-ftree-vectorize -ffast-math #-funroll-loops
  4. MATH =-lm
  5. DEBUG=-g
  6. BIOPHYL=/usr/lib/Bpp1.9/libbpp-phyl.a
  7. BIONUC=/usr/lib/Bpp1.9/libbpp-numcalc.a
  8. BIOUT=/usr/lib/Bpp1.9/libbpp-utils.a
  9. BIOSEQ=/usr/lib/Bpp1.9/libbpp-seq.a
  10. RM=rm -f
  11. ARCH=#-arch i386
  12. GSL=/usr/lib/libgsl.a /usr/lib/libgslcblas.a #-I/sw/include -L/sw/lib
  13.  
  14. all: BCFasta.o file_manip.o Blosum.o create.o caps
  15.  
  16. caps: caps.cpp file_manip.o create.o BCFasta.o Blosum.o
  17. $(CC) $(CFLAGS) $(OPT) $(GSL) $(ARCH) $(BIOPHYL) $(BIOUT) $(BIONUC) $(BIOSEQ) -o caps caps.cpp file_manip.o BCFasta.o create.o Blosum.o
  18. Blosum.o: Blosum.cpp
  19. $(CC) $(CFLAGS) $(OPT) -c Blosum.cpp
  20. create.o: create.cpp
  21. $(CC) $(OPT) $(CFLAGS) -c create.cpp
  22. file_manip.o: file_manip.cpp
  23. $(CC) $(OPT) $(CFLAGS) -c file_manip.cpp
  24. BCFasta.o: BCFasta.cpp
  25. $(CC) $(OPT) $(CFLAGS) -c BCFasta.cpp
  26. clean:
  27. $(RM) *.o *~ caps
  28. cleanout:
  29. $(RM) *.o *~ caps *.csv *.out
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement