Made Autodist work without the autodist.conf file.
[autodist.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.  If your project doesn't need distdefs you
16 # can comment this out.  Example:
17 #
18 # DISTDEFS="include/distdefs.h"
19 #
20 DISTDEFS="distdefs.h"
21
22 # Location of the aclocal tool.  If this is omitted the Autodist will not
23 # run aclocal.  User need to run it manually then.
24 #
25 ACLOCAL="aclocal"
26
27 # Location of the autoheader tool.  If this is omitted the Autodist will not
28 # run autoheader.  User need to run it manually then.
29 #
30 AUTOHEADER="autoheader"
31
32 # Location of the autoconf tool.  If this is omitted the Autodist will not
33 # run autoconf.  User need to run it manually then.
34 #
35 AUTOCONF="autoconf"
36
37 # Location of the automake tool.  If this is omitted the Autodist will not
38 # run automake.  User need to run it manually then.
39 #
40 AUTOMAKE="automake -a -c"
41
42 # Location of the libtoolize tool.  This option should be omitted if your
43 # source tree does not use libtool.
44 #
45 LIBTOOLIZE="libtoolize --automake --copy"
46
47 # Location of the make program.  This must be specified in order to be 
48 # able to create distributions.
49 #
50 MAKE="make"