vienna-rna-2.1.1-prll.patch 885 B

12345678910111213141516171819202122232425262728293031
  1. Readseq/Makefile | 6 +++---
  2. 1 file changed, 3 insertions(+), 3 deletions(-)
  3. diff --git a/Readseq/Makefile b/Readseq/Makefile
  4. index f073aaa..05f2edd 100644
  5. --- a/Readseq/Makefile
  6. +++ b/Readseq/Makefile
  7. @@ -6,11 +6,11 @@
  8. #
  9. # pick an ANSI C compiler (the default Sun CC is not ANSI)
  10. -CC=gcc # Gnu C Compiler
  11. +CC?=gcc # Gnu C Compiler
  12. #CC=cc # SGI Irix
  13. #CC=vcc # some DEC Ultrix
  14. -CFLAGS=
  15. +CFLAGS?=
  16. #CFLAGS= -DSMALLCHECKSUM # if you prefer to use a GCG-standard 13 bit checksum
  17. # instead of a full 32 bit checksum. This may enhance compatibility w/ GCG software
  18. @@ -40,7 +40,7 @@ all: build test
  19. build: $(SOURCES)
  20. @echo "Compiling readseq..."
  21. - $(CC) $(LDFLAGS) $(CFLAGS) -o readseq readseq.c ureadseq.c
  22. + $(CC) $(LDFLAGS) $(CFLAGS) -o readseq readseq.c ureadseq.c ureadasn.c
  23. # if using NCBI, uncomment these lines in place of build: above
  24. #build: $(SOURCES)