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