diff options
Diffstat (limited to 'sci-biology/t-coffee/files/t-coffee-11.00-makefile.patch')
-rw-r--r-- | sci-biology/t-coffee/files/t-coffee-11.00-makefile.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sci-biology/t-coffee/files/t-coffee-11.00-makefile.patch b/sci-biology/t-coffee/files/t-coffee-11.00-makefile.patch new file mode 100644 index 000000000000..b7a6d9e17a5e --- /dev/null +++ b/sci-biology/t-coffee/files/t-coffee-11.00-makefile.patch @@ -0,0 +1,19 @@ +--- a/t_coffee_source/makefile ++++ b/t_coffee_source/makefile +@@ -1,14 +1,12 @@ +-CC=g++ +-CFLAGS=-O3 -Wno-write-strings + SOURCES := $(shell find . -type f -name *.c) + OBJECTS := $(SOURCES:.c=.o) + DEPS := $(OBJECTS:.o=.deps) + + t_coffee: $(OBJECTS) +- @echo " Linking..."; $(CC) $^ -o t_coffee -lm ++ $(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o t_coffee -lm $(LIBS) + + %.o: %.c +- @echo " CC $<"; $(CC) $(CFLAGS) -I. -MD -MF $(@:.o=.deps) -c -o $@ $< ++ $(CXX) $(CXXFLAGS) $(CPPFLAGS) -I. -MD -MF $(@:.o=.deps) -c -o $@ $< + + -include $(DEPS) + |