Licensing: Update copyright dates for Ian Jackson
[adns] / 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,2014 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 3, 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
23 MAJOR= 1
24 MINOR= 3
25 SHLIBFILE= @SHLIBFILE@
26 SHLIBSONAME= @SHLIBSONAME@
27 SHLIBFORLINK= @SHLIBFORLINK@
28
29 CC= @CC@
30 CFLAGS= $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
31 LDFLAGS= $(AUTOLDFLAGS) $(DIRLDFLAGS) $(XLDFLAGS)
32 LDLIBS= @LIBS@ $(XLIBS)
33 AUTOCFLAGS= @CFLAGS@
34 AUTOLDFLAGS= @LDFLAGS@
35 WARNS= @WARNS@
36 #WERROR= -Werror
37
38 M4= m4
39 RANLIB= @RANLIB@
40
41 SHLIBCC= @SHLIBCC@
42
43 MKSHLIB_1= @MKSHLIB_1@
44 MKSHLIB_2= @MKSHLIB_2@
45 MKSHLIB_3= @MKSHLIB_3@
46
47 prefix= @prefix@
48 exec_prefix= @exec_prefix@
49 bindir= @bindir@
50 libdir= @libdir@
51 includedir= @includedir@
52
53 AC_INSTALL= @INSTALL@
54 ifeq ($(AC_INSTALL),./install-sh -c)
55 INSTALL= $(srcdir)/../$(AC_INSTALL)
56 else
57 INSTALL= $(AC_INSTALL)
58 endif
59
60 INSTALL_PROGRAM= $(INSTALL) -m 755 $(INSTALL_PROGRAM_FLAGS)
61 INSTALL_DATA= $(INSTALL) -m 644
62
63 all: $(TARGETS)
64
65 clean mostlyclean:
66 rm -f *.o *.tmp* *.so *.so.* pipe.*
67
68 distclean: clean
69 rm -f $(TARGETS) *~ ./#*# core *.orig *.rej Makefile
70
71 distprep: $(AUTOCSRCS) $(AUTOCHDRS)
72
73 maintainer-clean: distclean
74 -rm -f $(AUTOCSRCS) $(AUTOCHDRS)