chiark / gitweb /
src/: Support IPv6 reverse queries.
[adns.git] / settings.make.in
1 # settings.make[.in] - main configuration settings for Makefiles,
2 #  used by autoconf/configure to generate settings.make
3 #  
4 #  This file is part of adns, which is
5 #    Copyright (C) 1997-2000,2003,2006  Ian Jackson
6 #    Copyright (C) 1999-2000,2003,2006  Tony Finch
7 #    Copyright (C) 1991 Massachusetts Institute of Technology
8 #  (See the file INSTALL for full details.)
9 #  
10 #  This program is free software; you can redistribute it and/or modify
11 #  it under the terms of the GNU General Public License as published by
12 #  the Free Software Foundation; either version 2, or (at your option)
13 #  any later version.
14 #  
15 #  This program is distributed in the hope that it will be useful,
16 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 #  GNU General Public License for more details.
19 #  
20 #  You should have received a copy of the GNU General Public License
21 #  along with this program; if not, write to the Free Software Foundation,
22 #  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
23
24 MAJOR=          1
25 MINOR=          3
26 SHLIBFILE=      @SHLIBFILE@
27 SHLIBSONAME=    @SHLIBSONAME@
28 SHLIBFORLINK=   @SHLIBFORLINK@
29
30 CC=             @CC@
31 CFLAGS=         $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
32 LDFLAGS=        $(AUTOLDFLAGS) $(DIRLDFLAGS) $(XLDFLAGS)
33 LDLIBS=         @LIBS@ $(XLIBS)
34 AUTOCFLAGS=     @CFLAGS@
35 AUTOLDFLAGS=    @LDFLAGS@
36 WARNS=          @WARNS@
37 #WERROR=        -Werror
38
39 M4=             m4
40 RANLIB=         @RANLIB@
41
42 SHLIBCC=        @SHLIBCC@
43
44 MKSHLIB_1=      @MKSHLIB_1@
45 MKSHLIB_2=      @MKSHLIB_2@
46 MKSHLIB_3=      @MKSHLIB_3@
47
48 prefix=         @prefix@
49 exec_prefix=    @exec_prefix@
50 bindir=         @bindir@
51 libdir=         @libdir@
52 includedir=     @includedir@
53
54 AC_INSTALL=     @INSTALL@
55 ifeq ($(AC_INSTALL),./install-sh -c)
56 INSTALL=        $(srcdir)/../$(AC_INSTALL)
57 else
58 INSTALL=        $(AC_INSTALL)
59 endif
60
61 INSTALL_PROGRAM=        $(INSTALL) -m 755 $(INSTALL_PROGRAM_FLAGS)
62 INSTALL_DATA=           $(INSTALL) -m 644
63
64 all:                    $(TARGETS)
65
66 clean mostlyclean:
67                 rm -f *.o *.tmp* *.so *.so.*
68
69 distclean:              clean
70                 rm -f $(TARGETS) *~ ./#*# core *.orig *.rej Makefile
71
72 distprep:               $(AUTOCSRCS) $(AUTOCHDRS)
73
74 maintainer-clean:       distclean
75                 -rm -f $(AUTOCSRCS) $(AUTOCHDRS)