chiark / gitweb /
Build system: Break out common.make[.in]
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 20 Oct 2014 00:22:07 +0000 (01:22 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 20 Oct 2014 00:26:44 +0000 (01:26 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
.gitignore
Makefile.in
common.make.in [new file with mode: 0644]
configure
configure.in
settings.make.in

index e85580f1f33c41f4f9347cfbb90f17693cb1f77c..05e7a36de7451e04f8da6e2d00ae50b4017bc778 100644 (file)
@@ -5,6 +5,7 @@ config.status
 autom4te.cache
 dist_tmp
 adns-*.tar.gz
+common.make
 settings.make
 *.tmp*
 *.o
index 4faa50b5df759ba93114b703e9e36e654202df6b..2acc8f36288f2ee375461dd669391e2dd507ea6e 100644 (file)
 #  You should have received a copy of the GNU General Public License
 #  along with this program; if not, write to the Free Software Foundation.
 
+include                ./common.make
+
 # Remember to change ADNS_VERSION_STRING in client/client.h too, and
-# possibly library soname (MAJOR and MINOR in settings.make.in).
+# possibly library soname (MAJOR and MINOR in common.make.in).
 DISTVERSION=   1.5.0~~
 
 srcdir=                @srcdir@
diff --git a/common.make.in b/common.make.in
new file mode 100644 (file)
index 0000000..09ca9dc
--- /dev/null
@@ -0,0 +1,63 @@
+#  common.make[.in] - common configuration settings for Makefiles,
+#  used by autoconf/configure to generate settings.make
+#  
+#  This file is part of adns, which is
+#    Copyright (C) 1997-2000,2003,2006,2014  Ian Jackson
+#    Copyright (C) 2014  Mark Wooding
+#    Copyright (C) 1999-2000,2003,2006  Tony Finch
+#    Copyright (C) 1991 Massachusetts Institute of Technology
+#  (See the file INSTALL for full details.)
+#  
+#  This program is free software; you can redistribute it and/or modify
+#  it under the terms of the GNU General Public License as published by
+#  the Free Software Foundation; either version 3, or (at your option)
+#  any later version.
+#  
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#  
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation.
+
+MAJOR=         1
+MINOR=         3
+SHLIBFILE=     @SHLIBFILE@
+SHLIBSONAME=   @SHLIBSONAME@
+SHLIBFORLINK=  @SHLIBFORLINK@
+
+CC=            @CC@
+CFLAGS=                $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
+LDFLAGS=       $(AUTOLDFLAGS) $(DIRLDFLAGS) $(XLDFLAGS)
+LDLIBS=                @LIBS@ $(XLIBS)
+AUTOCFLAGS=    @CFLAGS@
+AUTOLDFLAGS=   @LDFLAGS@
+WARNS=         @WARNS@
+#WERROR=       -Werror
+
+M4=            m4
+RANLIB=                @RANLIB@
+
+SHLIBCC=       @SHLIBCC@
+
+MKSHLIB_1=     @MKSHLIB_1@
+MKSHLIB_2=     @MKSHLIB_2@
+MKSHLIB_3=     @MKSHLIB_3@
+
+prefix=                @prefix@
+exec_prefix=   @exec_prefix@
+bindir=                @bindir@
+libdir=                @libdir@
+includedir=    @includedir@
+
+AC_INSTALL=    @INSTALL@
+ifeq ($(AC_INSTALL),./install-sh -c)
+INSTALL=       $(srcdir)/../$(AC_INSTALL)
+else
+INSTALL=       $(AC_INSTALL)
+endif
+
+INSTALL_PROGRAM=       $(INSTALL) -m 755 $(INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA=          $(INSTALL) -m 644
+
index e05166525f2201c940d1c74d4c7a0b702551313f..825233cdb3801f74c7719203f380b6829dce17e0 100755 (executable)
--- a/configure
+++ b/configure
@@ -4054,7 +4054,7 @@ MKSHLIB_1='$(CC) $(LDFLAGS) -shared -Wl,-soname=$(SHLIBSONAME) -o'
 MKSHLIB_2=''
 MKSHLIB_3='-lc'
 
-ac_config_files="$ac_config_files settings.make Makefile src/Makefile client/Makefile dynamic/Makefile regress/Makefile"
+ac_config_files="$ac_config_files common.make settings.make Makefile src/Makefile client/Makefile dynamic/Makefile regress/Makefile"
 
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
@@ -4747,6 +4747,7 @@ for ac_config_target in $ac_config_targets
 do
   case $ac_config_target in
     "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;;
+    "common.make") CONFIG_FILES="$CONFIG_FILES common.make" ;;
     "settings.make") CONFIG_FILES="$CONFIG_FILES settings.make" ;;
     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
     "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
index 2855fe6a65d186c52ae8310075ccc6bbd1ee561c..2221d08a06796bfb401ba77e19c44af895f85275 100644 (file)
@@ -148,6 +148,6 @@ MKSHLIB_2=''
 MKSHLIB_3='-lc'
 
 AC_OUTPUT(
-       settings.make Makefile
+       common.make settings.make Makefile
        src/Makefile client/Makefile dynamic/Makefile regress/Makefile
 )
index abab1fdadc069db3168681fe8a6e18f3015c4948..81e1bb3c223e8453b2123721154d0a8d7deff7c3 100644 (file)
 #  You should have received a copy of the GNU General Public License
 #  along with this program; if not, write to the Free Software Foundation.
 
-MAJOR=         1
-MINOR=         3
-SHLIBFILE=     @SHLIBFILE@
-SHLIBSONAME=   @SHLIBSONAME@
-SHLIBFORLINK=  @SHLIBFORLINK@
-
-CC=            @CC@
-CFLAGS=                $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
-LDFLAGS=       $(AUTOLDFLAGS) $(DIRLDFLAGS) $(XLDFLAGS)
-LDLIBS=                @LIBS@ $(XLIBS)
-AUTOCFLAGS=    @CFLAGS@
-AUTOLDFLAGS=   @LDFLAGS@
-WARNS=         @WARNS@
-#WERROR=       -Werror
-
-M4=            m4
-RANLIB=                @RANLIB@
-
-SHLIBCC=       @SHLIBCC@
-
-MKSHLIB_1=     @MKSHLIB_1@
-MKSHLIB_2=     @MKSHLIB_2@
-MKSHLIB_3=     @MKSHLIB_3@
-
-prefix=                @prefix@
-exec_prefix=   @exec_prefix@
-bindir=                @bindir@
-libdir=                @libdir@
-includedir=    @includedir@
-
-AC_INSTALL=    @INSTALL@
-ifeq ($(AC_INSTALL),./install-sh -c)
-INSTALL=       $(srcdir)/../$(AC_INSTALL)
-else
-INSTALL=       $(AC_INSTALL)
-endif
-
-INSTALL_PROGRAM=       $(INSTALL) -m 755 $(INSTALL_PROGRAM_FLAGS)
-INSTALL_DATA=          $(INSTALL) -m 644
+include                ../common.make
 
 all:                   $(TARGETS)