xdr-int64-dont-build-on-dux-ever-20010829
[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 # MakefileProto for HP systems
9 #
10 DESTDIR=@DESTDIR@
11 SRCDIR=@SRCDIR@
12 TOP_SRCDIR=@TOP_SRCDIR@
13 SYS_NAME=@AFS_SYSNAME@
14
15 include ../config/Makefile.${SYS_NAME}
16
17 # OS specific object files:
18 AFS_OS_OBJS = \
19         osi_debug.o \
20         osi_groups.o \
21         osi_inode.o \
22         osi_file.o \
23         osi_misc.o \
24         osi_sleep.o \
25         osi_vnodeops.o \
26         osi_vm.o \
27         xdr_int64.o
28
29 AFS_OS_NFSOBJS = \
30         osi_vfsops_nfs.o
31
32 AFS_OS_NONFSOBJS = \
33         osi_vfsops.o
34
35
36 # System specific build commands and flags
37 #
38 # Note: the online document
39 #
40 #       Developing Dynamically Loadable Kernel Modules
41 #       Issue 1.0
42 #       HP-UX 11.0
43 #       October 12, 1998
44 #
45 # mentioned on http://docs.hp.com/hpux/os/index.html
46 # with URL     http://docs.hp.com/hpux/content/dlkm_v1.2.pdf
47 #
48 # recommends the undocumented +ES1.Xindirect_calls option for both
49 # 32-bit and 64-bit kernel code, but it appears to be absolutely vital
50 # for compiling 64-bit kernel code.  In 64-bit mode, the ANSI C compiler
51 # has the +Z (PIC) option on by default, and there is no documented way
52 # to turn it off.  However, kernel code does not work properly when
53 # compiled with +Z (i.e. calling a function through a function pointer
54 # seems to hang).  When the compiler sees the +ES1.Xindirect_calls
55 # option, however, it issues a warning and turns off +Z.
56 #
57 KDEFS= +ES1.Xindirect_calls +XixdU +Hx0 +ESlit +ESsfc +ESssf -Wp,-H300000 -D_KERNEL -D_KERNEL_BUILD -D_UNSUPPORTED \
58         -DMP +R500 -Wl,+k $(CPU_KDEFS)
59 KDEFS_32 = +DA1.0 +DS1.0
60 # add +M2 to $(KDEFS_64) for 64-bit migration warnings
61 # warning 478: "+Z" and "+ES1.Xindirect_calls" are mutually exclusive. "+Z" ignored.
62 # warning 530: LP64 migration: Casting from loose to strict alignment: Resulting pointer may be misaligned.
63 KDEFS_64 = +DA2.0W +DS2.0 +M2 +W 478,530
64 DEFINES= -DAFSDEBUG -DKERNEL -DAFS -DVICE -DNFS -DUFS -DINET -DQUOTA -DGETMOUNT -DHPONCPLUS
65 OPTF=${OPT} 
66 OPTF2=${OPT2} 
67 CFLAGS=-I. -I.. -I../h -I../nfs -I${TOP_SRCDIR}/config ${FSINCLUDES} $(DEFINES) $(KDEFS) $(KOPTS) ${DBUG}
68
69 # Name of directory to hold object files and libraries.
70 KOBJ=STATIC
71
72 # This tells Makefile.common to use its single directory build target.
73 #COMPDIRS = single_compdir
74 # This is the hpux multiple directory target.
75 COMPDIRS = hpux_compdirs
76
77 include Makefile.common
78
79 BITS = 64 32
80
81 setup:
82         -rm -f  h net dux machine netinet nfs rpc s200 ufs sys
83         ln -s /usr/include/sys h
84         ln -s /etc/conf/net net
85         ln -s /etc/conf/dux dux
86         ln -s /etc/conf/machine machine
87         ln -s /etc/conf/netinet netinet
88         ln -s /etc/conf/nfs nfs
89         ln -s /usr/include/rpc rpc
90         ln -s /etc/conf/machine s200
91         ln -s /etc/conf/ufs ufs
92         ln -s /usr/include/sys sys
93         for b in $(BITS); do \
94             for t in $(KOBJ); do \
95                 dir=$$t.$$b; \
96                 echo Making directory: $$dir; \
97                 mkdir -p $$dir; \
98                 rm -f $$dir/Makefile $$dir/Makefile.common; \
99                 ln -s ../Makefile $$dir/Makefile; \
100                 ln -s ../Makefile.common $$dir/Makefile.common; \
101             done; \
102         done
103         echo Setup complete.
104
105 # Compile the clients.
106 ${COMPDIRS}:
107         if false; then \
108         for b in $(BITS); do \
109             for t in $(KOBJ); do \
110                 dir=$$t.$$b; \
111                 echo Building directory: $$dir; \
112                 case $$b in \
113                 32)     bopts="$(KDEFS_32)"; bsuff="";; \
114                 64)     bopts="$(KDEFS_64)"; bsuff="64";; \
115                 esac; \
116                 cd $$dir; \
117                 $(MAKE) BITSUFFIX=$$bsuff CPU_KDEFS="$$bopts" libafs || exit $$?; \
118                 cd ..; \
119             done; \
120         done; \
121         fi
122
123
124 # Below this line are targets when in the static directory:
125 LIBAFS = libafs$(BITSUFFIX).a
126 LIBAFSNONFS = libafs$(BITSUFFIX).nonfs.a
127
128
129 DEST_LIBAFS = ${DESTDIR}root.client/bin/${LIBAFS}
130 DEST_LIBAFSNONFS = ${DESTDIR}root.client/bin/${LIBAFSNONFS}
131
132
133 # libafs: ${DEST_LIBAFS} ${DEST_LIBAFSNONFS}
134 libafs: ${DEST_LIBAFSNONFS}
135
136 $(DEST_LIBAFS): $(LIBAFS)
137         ${INSTALL} -f $? $@
138
139 $(DEST_LIBAFSNONFS): $(LIBAFSNONFS)
140         ${INSTALL} -f $? $@
141
142 ${LIBAFS}: $(AFSAOBJS) $(AFSNFSOBJS)
143         $(AR) cru $@ $?
144         $(RANLIB) $@
145
146 ${LIBAFSNONFS}:  $(AFSAOBJS) $(AFSNONFSOBJS)
147         $(AR) cru $@ $?
148         $(RANLIB) $@
149
150
151 # HP specific objects
152 osi_groups.o: $(AFS)/osi_groups.c
153         $(CRULE1)
154 osi_inode.o: $(AFS)/osi_inode.c
155         $(CRULE1)
156 osi_file.o: $(AFS)/osi_file.c
157         $(CRULE1)
158 osi_misc.o: $(AFS)/osi_misc.c
159         $(CRULE1)
160 osi_sleep.o: $(AFS)/osi_sleep.c
161         $(CRULE1)
162 osi_vfsops_nfs.o: $(AFS)/osi_vfsops.c
163         $(CRULE1) -o osi_vfsops_nfs.o
164 osi_vfsops.o: $(AFS)/osi_vfsops.c
165         $(CRULE1) -DAFS_NONFSTRANS
166 osi_vm.o: $(AFS)/osi_vm.c
167         $(CRULE1)
168 osi_vnodeops.o: $(AFS)/osi_vnodeops.c
169         $(CRULE1)
170 xdr_int64.o: $(RX)/xdr_int64.c
171         $(CRULE1)
172
173 # This is a list of header files compiled with the -g option. It allows
174 # examination of AFS structures in a dump.
175 osi_debug.o: $(AFS)/osi_debug.c
176         $(CRULE4)
177