Permalink
Please sign in to comment.
Browse files
One p7_oprofile_Clone() call updated to p7_oprofile_Shadow(),
following API change in hmmer. 'make tags' changed to call a new makeTAGS.sh script instead. By running ./makeTAGS.sh directly, you can use tag searching without needing to ./configure a Makefile. In my src/, I now create a supertags file for HMMER, Easel, and Infernal, so I can easily search all our Easel- or HMMER-dependent code when I'm changing something in an API (like p7_oprofile_Clone() getting renamed).
- Loading branch information...
Showing
with
19 additions
and 7 deletions.
- +3 −6 Makefile.in
- +15 −0 makeTAGS.sh
- +1 −1 src/cmsearch.c
15
makeTAGS.sh
| @@ -0,0 +1,15 @@ | ||
| +#! /bin/sh | ||
| + | ||
| +etags configure.ac | ||
| +etags -a INSTALL | ||
| +etags -a LICENSE | ||
| + | ||
| +# Recursively add all .c, .h, .pl, *.tex, *.man | ||
| +find . -name "*.c" -print -or -name "*.h" -print | xargs etags -a | ||
| +find . -name "*.pl" -print -or -name "*.pm" -print | xargs etags -a | ||
| +find . -name "*.sh" -print | xargs etags -a | ||
| +find . -name "*.tex" -print | xargs etags -a | ||
| +find . -name "*.man" -print | xargs etags -a | ||
| +find . -name "*.in" -print | xargs etags -a | ||
| +find . -name "*.sqc" -print | xargs etags -a | ||
| +find . -name "*README" -print | xargs etags -a |
0 comments on commit
d835249