a3d102df79a738914aff46b85bb4f508d5526ca4
[openafs.git] / src / libafs / MakefileProto.SOLARIS.in
1 # Copyright 2000, International Business Machines Corporation and others.
2 # All Rights Reserved.
3
4 # This software has been released under the terms of the IBM Public
5 # License.  For details, see the LICENSE file in the top-level source
6 # directory or online at http://www.openafs.org/dl/license10.html
7
8 srcdir=@srcdir@
9 include @TOP_OBJDIR@/src/config/Makefile.config
10 INSTALL = @INSTALL@
11 INSTALL_DATA = @INSTALL_DATA@
12 INSTALL_PROGRAM = @INSTALL_PROGRAM@
13 INSTALL_SCRIPT = @INSTALL_SCRIPT@
14
15
16 # OS specific object files:
17 AFS_OS_OBJS = \
18         osi_crypto.o \
19         osi_gcpags.o \
20         osi_groups.o \
21         osi_inode.o \
22 <sunx86_511 sun4x_511>
23         osi_ioctl.o \
24 <all>
25         osi_file.o \
26         osi_sleep.o \
27         osi_vcache.o \
28         osi_vm.o \
29         osi_vnodeops.o
30
31 AFS_OS_NFSOBJS = \
32         osi_vfsops_nfs.o
33
34 AFS_OS_NONFSOBJS = \
35         osi_vfsops.o
36
37 # System specific build commands and flags
38 DEFINES= -DAFSDEBUG -DKERNEL -DAFS -DVICE -DNFS -DUFS -DINET -DQUOTA -DGETMOUNT
39 #These are redundant
40 #LD = /usr/ccs/bin/ld
41 #CC = /opt/SUNWspro/bin/cc
42 KDEFS= -D_KERNEL -DSYSV -dn ${ARCH_DEFS}
43 <sunx86_510 sunx86_511>
44 DBUG= -Wu,-save_args
45
46 <sun4x_58 sun4x_59 sun4x_510 sun4x_511>
47 KDEFS_32 = -xarch=v8
48 KDEFS_64 = -xarch=v9 
49
50 <sunx86_58 sunx86_59 sunx86_510>
51 KDEFS_32 = 
52 KDEFS_64 = -xarch=amd64 -xmodel=kernel
53
54 <sunx86_511>
55 KDEFS_32 =
56 KDEFS_64 = -m64 -xmodel=kernel
57
58 <all>
59 CFLAGS=-I. -I.. -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KDEFS) @SOLARIS_CC_KOPTS@ ${DBUG}
60
61 <sun4x_58 sunx86_58 sun4x_59 sunx86_59>
62 LDFLAGS=-r -dy -N drv/ip -N drv/udp -N strmod/rpcmod
63
64 <all -sun4x_58 -sunx86_58 -sun4x_59 -sunx86_59>
65 LDFLAGS=-r -dy -N drv/ip -N drv/udp -N strmod/rpcmod -N fs/ufs
66
67 # Name of directory to hold object files and libraries.
68 <all -sun4x_510 -sun4x_511 -sunx86_511>
69 KOBJ = MODLOAD32 MODLOAD64
70 <sun4x_510 sun4x_511 sunx86_511>
71 KOBJ = MODLOAD64
72
73 # This tells Makefile.common to use it's single directory build target.
74 <all>
75 COMPDIRS = solaris_compdirs
76 INSTDIRS = solaris_instdirs
77 DESTDIRS = solaris_destdirs
78
79 include Makefile.common
80
81
82 setup:
83         -$(RM) -f  h net netinet rpc ufs nfs  machine sys inet
84         -ln -fs /usr/include/sys h
85         -ln -fs /usr/include/net net
86         -ln -fs /usr/include/netinet netinet
87         -ln -fs /usr/include/rpc rpc
88         -ln -fs /usr/include/sys sys
89         -ln -fs /usr/include/nfs nfs
90         -ln -fs /usr/include/inet inet
91         -ln -fs /usr/include/ufs ufs
92         for t in ${KOBJ} ; do \
93                 echo Making directory: $$t; \
94                 mkdir -p $$t; \
95                 $(RM) -f $$t/Makefile.common $$t/Makefile $$t/config ; \
96                 ln -fs ../Makefile.common $$t/Makefile.common ; \
97                 ln -fs ../Makefile $$t/Makefile ;\
98                 ln -fs ../config $$t/config ;\
99         done
100
101
102 ## This is the target for a Solaris 7. Here we build both the 32 bit and
103 ## the 64 bit libafs in MODLOAD32 and MODLOAD64 directories respectively
104
105 ${COMPDIRS} ${INSTDIRS} ${DESTDIRS}: setup
106         for t in ${KOBJ} ; do \
107                 echo Building directory: $$t ; \
108                 case $$t in \
109                         MODLOAD32) \
110                          ARCH_DEFS="${KDEFS_32}" ; \
111                          BITS="" ;; \
112                         MODLOAD64) \
113                          ARCH_DEFS="${KDEFS_64}" ; \
114                          BITS="64" ;; \
115                 esac ; \
116                 export ARCH_DEFS ; \
117                 export BITS ; \
118                 ( cd $$t && $(MAKE) $@_libafs ) || exit $$? ; \
119         done
120
121 solaris_compdirs_libafs: depsrcs libafs
122 solaris_instdirs_libafs: install_libafs
123 solaris_destdirs_libafs: dest_libafs
124
125 # Below this line are targets when in the COMMON directory:
126 LIBAFS = libafs.o
127 LIBAFSNONFS = libafs.nonfs.o
128
129 INST_LIBAFSNONFS = ${DESTDIR}${afskerneldir}/libafs${BITS}.nonfs.o
130 INST_LIBAFS = ${DESTDIR}${afskerneldir}/libafs${BITS}.o
131
132 DEST_LIBAFSNONFS = ${DEST}/root.client/usr/vice/etc/modload/libafs${BITS}.nonfs.o
133 DEST_LIBAFS = ${DEST}/root.client/usr/vice/etc/modload/libafs${BITS}.o
134
135 # Without this line, gmake tries to build libafs.o
136 .PHONY: libafs
137
138 libafs: $(LIBAFSNONFS) $(LIBAFS)
139
140 install_libafs: $(LIBAFS) $(LIBAFSNONFS)
141         ${INSTALL} -d ${DESTDIR}${afskerneldir}
142         ${INSTALL} -m 644 $(LIBAFS) $(INST_LIBAFS)
143         ${INSTALL} -m 644 $(LIBAFSNONFS) $(INST_LIBAFSNONFS)
144
145 dest_libafs: $(LIBAFS) $(LIBAFSNONFS)
146         ${INSTALL} -d ${DEST}/root.client/usr/vice/etc/modload
147         ${INSTALL} -m 644 $(LIBAFS) $(DEST_LIBAFS)
148         ${INSTALL} -m 644 $(LIBAFSNONFS) $(DEST_LIBAFSNONFS)
149
150 # See $TOP_SRCDIR/config/cc-wrapper for an explanation/usage of
151 # OPENAFS_CC_WRAPPER_DEBUG_FLAG
152
153 ${LIBAFS}: $(AFSAOBJS) $(AFSNFSOBJS)
154         $(RM) -f $@
155         OPENAFS_CC_WRAPPER_DEBUG_FLAG="$(KERN_DBG)" $(LD_WRAPPER) $(LD) $(LDFLAGS) -o $@ $(AFSAOBJS) ${AFSNFSOBJS}
156
157 ${LIBAFSNONFS}:  $(AFSAOBJS) $(AFSNONFSOBJS)
158         $(RM) -f $@
159         OPENAFS_CC_WRAPPER_DEBUG_FLAG="$(KERN_DBG)" $(LD_WRAPPER) $(LD) $(LDFLAGS) -o $@ $(AFSAOBJS) ${AFSNONFSOBJS}