]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE14-platform-build-fixes-20060801
authorRuss Allbery <rra@stanford.edu>
Tue, 1 Aug 2006 22:54:19 +0000 (22:54 +0000)
committerDerrick Brashear <shadow@dementia.org>
Tue, 1 Aug 2006 22:54:19 +0000 (22:54 +0000)
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 [new file with mode: 0644]
src/platform/DARWIN/Makefile.in
src/platform/FBSD/Makefile.in [new file with mode: 0644]
src/platform/HPUX/Makefile.in [new file with mode: 0644]
src/platform/IRIX/Makefile.in [new file with mode: 0644]
src/platform/LINUX/Makefile.in [new file with mode: 0644]
src/platform/Makefile.in [new file with mode: 0644]
src/platform/NBSD/Makefile.in [new file with mode: 0644]
src/platform/OBSD/Makefile.in [new file with mode: 0644]
src/platform/SOLARIS/Makefile.in [new file with mode: 0644]

diff --git a/src/platform/AIX/Makefile.in b/src/platform/AIX/Makefile.in
new file mode 100644 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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:
index 22ea6beb146982f0aab7270054d94f32aefa6f75..42b2bcf39d751e523785a1ded9b0153e8a706dd8 100644 (file)
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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 (file)
index 0000000..1885253
--- /dev/null
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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 (file)
index 0000000..39ed2af
--- /dev/null
@@ -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: