Added SILC Thread Queue API
[silc.git] / apps / autodist / autodist.conf
1 # Autodist configuration file
2
3 # By default distdef prefix is '_DIST_'.  To add your own prefix set the
4 # prefix here.  NOTE: Remember to change all 'define' directives in
5 # distributions to use the new prefix if you change it.  Example:
6 #
7 # DISTPREFIX="SILC"
8 #
9 # Will set the distdef prefix as 'SILC_DIST_'.
10
11 DISTPREFIX=""
12
13 # The distdef header will be created by the Autodist.  It need to be included
14 # in the source code in order for the preprocessor to respect distdef 
15 # conditionals in source code.  Example:
16 #
17 # DISTDEFS="include/distdefs.h"
18 #
19 DISTDEFS="distdefs.h"
20
21 # Location of the aclocal tool.  If this is omitted the Autodist will not
22 # run aclocal.  User need to run it manually then.
23 #
24 ACLOCAL="aclocal"
25
26 # Location of the autoheader tool.  If this is omitted the Autodist will not
27 # run autoheader.  User need to run it manually then.
28 #
29 AUTOHEADER="autoheader"
30
31 # Location of the autoconf tool.  If this is omitted the Autodist will not
32 # run autoconf.  User need to run it manually then.
33 #
34 AUTOCONF="autoconf"
35
36 # Location of the automake tool.  If this is omitted the Autodist will not
37 # run automake.  User need to run it manually then.
38 #
39 AUTOMAKE="automake -a -c"
40
41 # Location of the libtoolize tool.  This option should be omitted if your
42 # source tree does not use libtool.
43 #
44 LIBTOOLIZE="libtoolize --automake --copy"
45
46 # Location of the make program.  This must be specified in order to be 
47 # able to create distributions.
48 #
49 MAKE="make"