Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Don't hide the build flags
· a7229134
Michael R. Crusoe
authored
Feb 15, 2019
a7229134
t-coffee-examples: mark Multi-Arch: foreign
· 48d6ff02
Michael R. Crusoe
authored
Feb 15, 2019
48d6ff02
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
48d6ff02
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 ]
...
...
debian/control
View file @
48d6ff02
...
...
@@ -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
...
...
debian/patches/series
View file @
48d6ff02
...
...
@@ -7,3 +7,4 @@ mayhem.patch
stable-linking-inputs.patch
clustalw2.patch
fix_tempfile_name_sharing.patch
verbose_build
debian/patches/verbose_build
0 → 100644
View file @
48d6ff02
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)