chiark / gitweb /
@@ -3,6 +3,8 @@
[adns] / settings.make.in
CommitLineData
39f45e7e 1# settings.make[.in] - main configuration settings for Makefiles,
b6953d1b 2# used by autoconf/configure to generate settings.make
e9d74277 3#
39f45e7e 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.)
a79ac5ba 9#
e9d74277 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
4b84c25d 24MAJOR= 1
e9e2e317 25MINOR= 2
b6953d1b 26SHLIBFILE= @SHLIBFILE@
27SHLIBSONAME= @SHLIBSONAME@
11c3ea54 28SHLIBFORLINK= @SHLIBFORLINK@
e9d74277 29
b6953d1b 30CC= @CC@
31CFLAGS= $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
c5656121 32LDFLAGS= $(AUTOLDFLAGS) $(DIRLDFLAGS) $(XLDFLAGS)
b6b44132 33LDLIBS= @LIBS@ $(XLIBS)
b6953d1b 34AUTOCFLAGS= @CFLAGS@
c5656121 35AUTOLDFLAGS= @LDFLAGS@
b6953d1b 36WARNS= @WARNS@
37#WERROR= -Werror
38
72cdc702 39M4= m4
40RANLIB= @RANLIB@
41
b6953d1b 42SHLIBCC= @SHLIBCC@
43
44MKSHLIB_1= @MKSHLIB_1@
45MKSHLIB_2= @MKSHLIB_2@
46MKSHLIB_3= @MKSHLIB_3@
47
48prefix= @prefix@
72cdc702 49exec_prefix= @exec_prefix@
50bin_dir= $(exec_prefix)/bin
51lib_dir= $(exec_prefix)/lib
e9d74277 52include_dir= $(prefix)/include
53
799508d2 54AC_INSTALL= @INSTALL@
55ifeq ($(AC_INSTALL),./install-sh -c)
56INSTALL= $(srcdir)/../$(AC_INSTALL)
57else
58INSTALL= $(AC_INSTALL)
59endif
60
72cdc702 61INSTALL_PROGRAM= $(INSTALL) -m 755 $(INSTALL_PROGRAM_FLAGS)
62INSTALL_DATA= $(INSTALL) -m 644
e9d74277 63
72cdc702 64all: $(TARGETS)
e9d74277 65
72cdc702 66clean mostlyclean:
c5656121 67 rm -f *.o *.tmp* *.so *.so.*
e9d74277 68
72cdc702 69distclean: clean
e1f1ed57 70 rm -f $(TARGETS) *~ ./#*# core *.orig *.rej Makefile
72cdc702 71
09aee00b 72distprep: $(AUTOCSRCS) $(AUTOCHDRS)
72cdc702 73
74maintainer-clean: distclean
09aee00b 75 -rm -f $(AUTOCSRCS) $(AUTOCHDRS)