opr: Introduce opr_cache
[openafs.git] / src / libafs / MakefileProto.HPUX.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_debug.o \
19         osi_gcpags.o \
20         osi_groups.o \
21         osi_inode.o \
22         osi_file.o \
23         osi_misc.o \
24         osi_sleep.o \
25         osi_vcache.o \
26         osi_vnodeops.o \
27         osi_vm.o
28
29 AFS_OS_NFSOBJS = \
30 <ia64_hpux1123 hp_ux1123>
31         hpux_mod_nfs.modmeta.o \
32 <all>
33         osi_vfsops_nfs.o
34
35 AFS_OS_NONFSOBJS = \
36 <ia64_hpux1123 hp_ux1123>
37         hpux_mod.modmeta.o \
38 <all>
39         osi_vfsops.o
40
41
42 # System specific build commands and flags
43 #
44 # Note: the online document
45 #
46 #       Developing Dynamically Loadable Kernel Modules
47 #       Issue 1.0
48 #       HP-UX 11.0
49 #       October 12, 1998
50 #
51 # mentioned on http://docs.hp.com/hpux/os/index.html
52 # with URL     http://docs.hp.com/hpux/content/dlkm_v1.2.pdf
53 #
54 # recommends the undocumented +ES1.Xindirect_calls option for both
55 # 32-bit and 64-bit kernel code, but it appears to be absolutely vital
56 # for compiling 64-bit kernel code.  In 64-bit mode, the ANSI C compiler
57 # has the +Z (PIC) option on by default, and there is no documented way
58 # to turn it off.  However, kernel code does not work properly when
59 # compiled with +Z (i.e. calling a function through a function pointer
60 # seems to hang).  When the compiler sees the +ES1.Xindirect_calls
61 # option, however, it issues a warning and turns off +Z.
62 #
63 # for 11.23, see the DDK BE/Sample_makefiles/Makefile.bld
64 # for mod drivers.
65 #
66 # 11.23 uses new compiler, with new options. The same compiler is on pa_risc and ia64 
67 #
68 <hp_ux110 hp_ux102 hp_ux11i>
69 KDEFS= +ES1.Xindirect_calls +XixdU +Hx0 +ESlit +ESsfc +ESssf -Wp,-H300000 -D_KERNEL -D_KERNEL_BUILD -D_UNSUPPORTED \
70         -DMP +R500 -Wl,+k $(CPU_KDEFS)
71 KDEFS_32 = +DA1.0 +DS1.0
72 # add +M2 to $(KDEFS_64) for 64-bit migration warnings
73 # warning 478: "+Z" and "+ES1.Xindirect_calls" are mutually exclusive. "+Z" ignored.
74 # warning 530: LP64 migration: Casting from loose to strict alignment: Resulting pointer may be misaligned.
75 KDEFS_64 = +DA2.0W +DS2.0 +M2 +W 478,530
76
77 <all>
78
79 <ia64_hpux1122>
80 KDEFS= +kernel -Wp,-H300000 -D_KERNEL -D_KERNEL_BUILD -D_UNSUPPORTED \
81   -DFINE_GRAINED_PROTO_FILES \
82   -DMP -Wl,+k $(CPU_KDEFS)
83 KDEFS_32 =
84 KDEFS_64 = +DD64
85
86 <ia64_hpux1123>
87 ARCH=ipf
88
89 <hp_ux1123>
90 ARCH=pa
91
92 <ia64_hpux1123 hp_ux1123>
93
94 CCOPTS_common= -Ae +DD64 +O2
95
96 IDENTS_common= -DACLS -DAUDIT -DHPONCPLUS -DIDDS -DIPSEC -DIVT_INTERCEPT \
97     -DLWSYSCALL -DPGPROF -DSTCP -D_CLEAN_BE -D_HPUX_SOURCE -D_KERNEL \
98     -D_LARGEFILE64_SOURCE -D_NO_USER_PROTOS -D_UNSUPPORTED \
99     -D__BIGMSGQUEUE_ENABLED -D__ROSE__ -U__hp9000s700 \
100     -D_XPG4_EXTENDED -D__STDC_EXT__
101
102 # Definitions which apply to IPF only
103
104 CCOPTS_ipf= +DSitanium2 +kernel +objstatvars +Olit=all +Oshortdata=0 +W863
105
106 IDENTS_ipf= -DKERNEL_DEBUGGER -DVARIABLE_UAREA -D_SYSCALL_64 -D__NO_PA_HDRS
107
108 LDOPTS_ipf= +noobjdebug
109
110 # Definitions which apply to PA only
111
112 CCOPTS_pa= +DS2.0 +ES1.Xindirect_calls +ESlit +ESsfc +ESssf \
113         +ordering_unaware +Oentrysched +Ofastaccess +Omultiprocessor \
114         -Wp,-H300000 +Xid
115
116 IDENTS_pa= -DCOMB_FLIPPER -DKGDB_ON -DLP64_TMP_NODBG -DNEW_MFCTL_W \
117         -DNEW_RDB -DPARISC -DRDB -DSPP_OBP_BOOT -DSPP_RUNWAY_ERR_ENABLED \
118         -D__NO_EM_HDRS -D__ROSEVILLE__ -D__TEMP64__ -D__hp9000s800
119
120 LDOPTS_pa=
121
122
123 # above from the Makefile.bld example
124
125 LDOPTS= ${LDOPTS_${ARCH}}
126 KDEFS= $(CCOPTS_common) $(IDENTS_common) $(CPU_KDEFS) 
127 KDEFS_64= ${CCOPTS_${ARCH}} ${IDENTS_${ARCH}}
128
129 MODLINK=/opt/ddk/11.23/BE/bin/modlink
130 MODMETA=/opt/ddk/11.23/BE/bin/modmeta
131
132 <all>
133
134 DEFINES= -DAFSDEBUG -DKERNEL -DAFS -DVICE -DNFS -DUFS -DINET -DQUOTA -DGETMOUNT -DHPONCPLUS
135 OPTF=${OPT} 
136 OPTF2=${OPT2} 
137 CFLAGS=-I. -I.. -I../h -I../nfs -I../conf -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KDEFS) $(KOPTS) ${DBUG}
138
139 # Name of directory to hold object files and libraries.
140 KOBJ=STATIC
141
142 # This is the hpux multiple directory target.
143 COMPDIRS = hpux_compdirs
144 INSTDIRS = hpux_instdirs
145 DESTDIRS = hpux_destdirs
146
147 include Makefile.common
148
149 <hp_ux11i hp_ux110 hp_ux102>
150 BITS = 64 32
151 <ia64_hpux1122 ia64_hpux1123 hp_ux1123>
152 BITS = 64
153 <all>
154
155 setup:
156         -$(RM) -f  h conf net dux machine netinet nfs rpc s200 ufs sys
157 <hp_ux102>
158         ln -fs /usr/include/sys h
159 <hp_ux110 hp_ux11i ia64_hpux1122>
160         ln -fs /etc/conf/h h
161 <hp_ux102 hp_ux110 hp_ux11i ia64_hpux1122>
162         ln -fs /etc/conf conf
163         ln -fs /etc/conf/net net
164         ln -fs /etc/conf/dux dux
165         ln -fs /etc/conf/machine machine
166         ln -fs /etc/conf/netinet netinet
167         ln -fs /etc/conf/nfs nfs
168         ln -fs /usr/include/rpc rpc
169         ln -fs /etc/conf/machine s200
170 <hp_ux11i hp_ux110 hp_ux102>
171         ln -fs /etc/conf/ufs ufs
172 <ia64_hpux1122>
173         ln -fs /etc/conf/sys ufs
174 <ia64_hpux1123 hp_ux1123>
175         ln -fs /usr/include/sys h
176         ln -fs /usr/include/net net
177         ln -fs /usr/include/netinet netinet
178         ln -fs /usr/include/nfs nfs
179         ln -fs /usr/include/rpc rpc
180         ln -fs /usr/include/sys ufs
181 <all>
182         ln -fs /usr/include/sys sys
183         for b in $(BITS); do \
184             for t in $(KOBJ); do \
185                 dir=$$t.$$b; \
186                 echo Making directory: $$dir; \
187                 mkdir -p $$dir; \
188                 $(RM) -f $$dir/Makefile $$dir/Makefile.common $$dir/config; \
189                 ln -fs ../Makefile $$dir/Makefile; \
190                 ln -fs ../Makefile.common $$dir/Makefile.common; \
191                 ln -fs ../config $$dir/config; \
192             done; \
193         done
194         echo Setup complete.
195
196 # Compile the clients.
197 ${COMPDIRS} ${INSTDIRS} ${DESTDIRS}:
198         if true; then \
199         for b in $(BITS); do \
200             for t in $(KOBJ); do \
201                 dir=$$t.$$b; \
202                 echo Building directory: $$dir; \
203                 case $$b in \
204                 32)     bopts="$(KDEFS_32)"; bsuff="";; \
205                 64)     bopts="$(KDEFS_64)"; bsuff="64";; \
206                 esac; \
207                 cd $$dir; \
208                 $(MAKE) BITSUFFIX=$$bsuff CPU_KDEFS="$$bopts" $@_libafs || exit $$?; \
209                 cd ..; \
210             done; \
211         done; \
212         fi
213
214 hpux_compdirs_libafs: depsrcs libafs
215 hpux_instdirs_libafs: install_libafs
216 hpux_destdirs_libafs: dest_libafs
217
218
219 # Below this line are targets when in the static directory:
220 <all -ia64_hpux1123 -hp_ux1123>
221 LIBAFS = libafs$(BITSUFFIX).a
222 LIBAFSNONFS = libafs$(BITSUFFIX).nonfs.a
223 <ia64_hpux1123 hp_ux1123>
224 LIBAFS = afs$(BITSUFFIX)_nfs
225 LIBAFSNONFS =afs$(BITSUFFIX)
226 <all>
227
228 INST_LIBAFS = ${DESTDIR}${afskerneldir}/${LIBAFS}
229 INST_LIBAFSNONFS = ${DESTDIR}${afskerneldir}/${LIBAFSNONFS}
230
231 DEST_LIBAFS = ${DEST}/root.client/usr/bin/${LIBAFS}
232 DEST_LIBAFSNONFS = ${DEST}/root.client/usr/bin/${LIBAFSNONFS}
233
234
235 libafs: ${LIBAFSNONFS}
236
237 install_libafs: $(LIBAFSNONFS)
238         ${INSTALL} -d ${DESTDIR}${afskerneldir}
239         ${INSTALL} -m 644 $(LIBAFSNONFS) $(INST_LIBAFSNONFS)
240
241 dest_libafs: $(LIBAFSNONFS)
242         ${INSTALL} -d ${DEST}/root.client/usr/bin
243         ${INSTALL} -m 644 $(LIBAFSNONFS) $(DEST_LIBAFSNONFS)
244
245 ${LIBAFS}: $(AFSAOBJS) $(AFSNFSOBJS)
246 <all -ia64_hpux1123 -hp_ux1123>
247         $(AR) cru $@ $?
248         $(RANLIB) $@
249 <ia64_hpux1123 hp_ux1123>
250         $(MODLINK) -o $@ $(AFSAOBJS) $(AFSNFSOBJS)
251 <all>
252
253 ${LIBAFSNONFS}:  $(AFSAOBJS) $(AFSNONFSOBJS)
254 <all -ia64_hpux1123 -hp_ux1123>
255         $(AR) cru $@ $?
256         $(RANLIB) $@
257 <ia64_hpux1123 hp_ux1123>
258         $(MODLINK) -o $@ $(AFSAOBJS) $(AFSNONFSOBJS)
259 <all>
260
261 <ia64_hpux1123 hp_ux1123>
262 hpux_mod.modmeta.c: $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/hpux_mod.modmeta
263         $(MODMETA) ${IDENTS_common} ${IDENTS_ipf} \
264                 -DAFSLIB_NAME=${LIBAFSNONFS} \
265                 $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/hpux_mod.modmeta > hpux_mod.modmeta.c
266
267 hpux_mod_nfs.modmeta.c: $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/hpux_mod.modmeta
268         $(MODMETA) ${IDENTS_common} ${IDENTS_ipf} \
269                 -DAFSLIB_NAME=${LIBAFS} \
270                 $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/hpux_mod.modmeta > hpux_mod_nfs.modmeta.c
271 <all>