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