Skip to content
Commits on Source (2)
t-coffee (12.00.7fb08c2-5) UNRELEASED; urgency=medium
* Team upload.
* Unhide the build flags.
* t-coffee-examples: mark Multi-Arch: foreign
-- Michael R. Crusoe <michael.crusoe@gmail.com> Fri, 15 Feb 2019 06:49:18 -0800
t-coffee (12.00.7fb08c2-4) unstable; urgency=medium
[ Helmut Grohne ]
......
......@@ -55,6 +55,7 @@ Description: Multiple Sequence Alignment
Package: t-coffee-examples
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Recommends: t-coffee
Description: annotated examples for the use of T-Coffee
......
......@@ -7,3 +7,4 @@ mayhem.patch
stable-linking-inputs.patch
clustalw2.patch
fix_tempfile_name_sharing.patch
verbose_build
Author: Michael R. Crusoe <michael.crusoe@gmail.com>
Description: don't hide the build flags
--- t-coffee.orig/t_coffee_source/makefile
+++ t-coffee/t_coffee_source/makefile
@@ -5,10 +5,12 @@
DEPS := $(OBJECTS:.o=.deps)
t_coffee: $(OBJECTS)
- @echo " Linking..."; $(CC) $^ -o t_coffee -lm $(LDFLAGS)
+ @echo " Linking..."
+ $(CC) $^ -o t_coffee -lm $(LDFLAGS)
%.o: %.c
- @echo " CC $<"; $(CC) $(CPPFLAGS) $(CFLAGS) -I. -MD -MF $(@:.o=.deps) -c -o $@ $<
+ @echo " CC $<"
+ $(CC) $(CPPFLAGS) $(CFLAGS) -I. -MD -MF $(@:.o=.deps) -c -o $@ $<
-include $(DEPS)