1 /*
2 
3 PhyML:  a program that  computes maximum likelihood phylogenies from
4 DNA or AA homologous sequences.
5 
6 Copyright (C) Stephane Guindon. Oct 2003 onward.
7 
8 All parts of the source except where indicated are distributed under
9 the GNU public licence. See http://www.opensource.org for details.
10 
11 */
12 
13 #include <config.h>
14 
15 #ifndef OPTIONS_H
16 #define OPTIONS_H
17 
18 #include "utilities.h"
19 #include "cl.h"
20 #include "models.h"
21 #include "free.h"
22 #include "interface.h"
23 
24 void Usage();
25 #endif
26