From 1b0bbe11bfb62cfdeeb587f68b83084dc7063d69 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Tue, 1 Aug 2006 22:54:19 +0000 Subject: [PATCH] STABLE14-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. (cherry picked from commit 088e1409f8d318697023341e2050a3e58708b0fd) --- 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 | 26 ++++++++++++++++++++++++++ src/platform/NBSD/Makefile.in | 14 ++++++++++++++ src/platform/OBSD/Makefile.in | 14 ++++++++++++++ src/platform/SOLARIS/Makefile.in | 14 ++++++++++++++ 10 files changed, 139 insertions(+), 1 deletion(-) 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/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 new file mode 100644 index 000000000..1885253e9 --- /dev/null +++ b/src/platform/Makefile.in @@ -0,0 +1,26 @@ +# 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 + +# Common elements for Makefiles for all system types. + +srcdir=@srcdir@ +include @TOP_OBJDIR@/src/config/Makefile.config +include ../config/Makefile.version + +all: + cd $(MKAFS_OSTYPE) ; \ + echo $(MAKE) all; \ + $(MAKE) all +dest: + cd $(MKAFS_OSTYPE) ; \ + echo $(MAKE) DEST=${DEST} dest; \ + $(MAKE) DEST=${DEST} dest +install: + cd $(MKAFS_OSTYPE) ; \ + echo $(MAKE) DESTDIR=${DESTDIR} install; \ + $(MAKE) DESTDIR=${DESTDIR} install + 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