From 088e1409f8d318697023341e2050a3e58708b0fd Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Tue, 1 Aug 2006 22:27:17 +0000 Subject: [PATCH] platform-build-fixes-20060801 Add dummy makefiles for all the other supported architectures and fix a few issues with makefile inclusion in the Makefile.in and DARWIN/Makefile.in. --- src/platform/AIX/Makefile.in | 14 ++++++++++++++ src/platform/DARWIN/Makefile.in | 2 +- src/platform/FBSD/Makefile.in | 14 ++++++++++++++ src/platform/HPUX/Makefile.in | 14 ++++++++++++++ src/platform/IRIX/Makefile.in | 14 ++++++++++++++ src/platform/LINUX/Makefile.in | 14 ++++++++++++++ src/platform/Makefile.in | 8 ++++---- src/platform/NBSD/Makefile.in | 14 ++++++++++++++ src/platform/OBSD/Makefile.in | 14 ++++++++++++++ src/platform/SOLARIS/Makefile.in | 14 ++++++++++++++ 10 files changed, 117 insertions(+), 5 deletions(-) create mode 100644 src/platform/AIX/Makefile.in create mode 100644 src/platform/FBSD/Makefile.in create mode 100644 src/platform/HPUX/Makefile.in create mode 100644 src/platform/IRIX/Makefile.in create mode 100644 src/platform/LINUX/Makefile.in create mode 100644 src/platform/NBSD/Makefile.in create mode 100644 src/platform/OBSD/Makefile.in create mode 100644 src/platform/SOLARIS/Makefile.in diff --git a/src/platform/AIX/Makefile.in b/src/platform/AIX/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/AIX/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/DARWIN/Makefile.in b/src/platform/DARWIN/Makefile.in index 22ea6beb1..42b2bcf39 100644 --- a/src/platform/DARWIN/Makefile.in +++ b/src/platform/DARWIN/Makefile.in @@ -7,7 +7,7 @@ srcdir=@srcdir@ include @TOP_OBJDIR@/src/config/Makefile.config -include ../config/Makefile.version +include ../../config/Makefile.version all: afssettings diff --git a/src/platform/FBSD/Makefile.in b/src/platform/FBSD/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/FBSD/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/HPUX/Makefile.in b/src/platform/HPUX/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/HPUX/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/IRIX/Makefile.in b/src/platform/IRIX/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/IRIX/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/LINUX/Makefile.in b/src/platform/LINUX/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/LINUX/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/Makefile.in b/src/platform/Makefile.in index f5f14bc8a..1885253e9 100644 --- a/src/platform/Makefile.in +++ b/src/platform/Makefile.in @@ -6,8 +6,10 @@ # directory or online at http://www.openafs.org/dl/license10.html # Common elements for Makefiles for all system types. -# -SHELL=/bin/sh + +srcdir=@srcdir@ +include @TOP_OBJDIR@/src/config/Makefile.config +include ../config/Makefile.version all: cd $(MKAFS_OSTYPE) ; \ @@ -22,5 +24,3 @@ install: echo $(MAKE) DESTDIR=${DESTDIR} install; \ $(MAKE) DESTDIR=${DESTDIR} install - -include ${TOP_OBJDIR}/src/config/Makefile.version diff --git a/src/platform/NBSD/Makefile.in b/src/platform/NBSD/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/NBSD/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/OBSD/Makefile.in b/src/platform/OBSD/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/OBSD/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: diff --git a/src/platform/SOLARIS/Makefile.in b/src/platform/SOLARIS/Makefile.in new file mode 100644 index 000000000..39ed2af85 --- /dev/null +++ b/src/platform/SOLARIS/Makefile.in @@ -0,0 +1,14 @@ +# Copyright 2000, International Business Machines Corporation and others. +# All Rights Reserved. +# +# This software has been released under the terms of the IBM Public +# License. For details, see the LICENSE file in the top-level source +# directory or online at http://www.openafs.org/dl/license10.html + +SHELL=/bin/sh + +# We have no platform-specific stuff for this platform (yet). +all: +install: +dest: +clean: -- 2.39.5