darwin-head-build-fixes-20020821
[openafs.git] / src / libuafs / 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
11 # System specific build commands and flags
12 CC = /opt/ansic/bin/cc
13 DEFINES= -D_REENTRANT -DKERNEL -DUKERNEL
14 KOPTS=-Wp,-H200000 -Wl,-a,archive +DA1.0 +z
15 CFLAGS=-I. -I.. -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBUG}
16 OPTF=-O
17 WEBOPTS = -I../nsapi -DNETSCAPE_NSAPI -DNET_SSL -DXP_UNIX -DMCC_HTTPD
18
19 TEST_CFLAGS= -Wp,-H200000 +DA1.0 +z -D_POSIX_C_SOURCE=199506L -DAFS_PTHREAD_ENV -Dhpux -DAFS_HPUX_ENV
20 TEST_LDFLAGS=
21 TEST_LIBS=-lnsl -lm -lpthread -ldld -lc
22
23 LIBUAFS = libuafs.a
24 LIBJUAFS = libjuafs.a
25 LIBAFSWEB = nsafs.so
26 LIBAFSWEBKRB = nsafs.krb.so
27
28 include Makefile.common
29
30 setup_common:
31         -$(RM) -f  h net netinet rpc ufs nfs  machine sys inet nsapi
32         -ln -s /usr/include/sys h
33         -ln -s /usr/include/net net
34         -ln -s /usr/include/netinet netinet
35         -ln -s /usr/include/rpc rpc
36         -ln -s /usr/include/sys sys
37         -ln -s /usr/include/nfs nfs
38         -ln -s /usr/include/inet inet
39         -ln -s /usr/include/ufs ufs
40         -ln -s $(NS_INCL) nsapi
41
42 setup_uafs: UAFS setup_common
43         -$(RM) -f UAFS/Makefile UAFS/Makefile.common
44         ln -s ../Makefile UAFS/Makefile
45         ln -s ../Makefile.common UAFS/Makefile.common
46
47 setup_juafs: JUAFS setup_common
48         -$(RM) -f JUAFS/Makefile JUAFS/Makefile.common
49         ln -s ../Makefile JUAFS/Makefile
50         ln -s ../Makefile.common JUAFS/Makefile.common
51
52 UAFS:
53         mkdir -p $@
54
55 JUAFS:
56         mkdir -p $@
57
58 setup_nsafs: AFSWEB setup_common
59         -$(RM) -f AFSWEB/Makefile AFSWEB/Makefile.common
60         ln -s ../Makefile AFSWEB/Makefile
61         ln -s ../Makefile.common AFSWEB/Makefile.common
62
63 AFSWEB:
64         mkdir -p $@
65
66 UAFS/$(LIBUAFS): setup_uafs
67         cd UAFS; \
68         $(MAKE) $(LIBUAFS) LIBJUAFS_FLAGS=
69
70 JUAFS/$(LIBJUAFS): setup_juafs
71         cd JUAFS; \
72         $(MAKE) $(LIBJUAFS) DESTDIR=${DESTDIR} LIBJUAFS_FLAGS=-DAFS_WEB_ENHANCEMENTS
73
74 AFSWEB/$(LIBAFSWEB): setup_nsafs
75         cd AFSWEB; \
76         $(MAKE) $(LIBAFSWEB)
77
78 AFSWEB/$(LIBAFSWEBKRB): setup_nsafs
79         cd AFSWEB; \
80         $(MAKE) $(LIBAFSWEBKRB)
81
82 # Below this line are targets when in the COMMON directory:
83
84 $(LIBUAFS): $(UAFSOBJ)
85         -$(RM) -f $(LIBUAFS)
86         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
87
88 $(LIBJUAFS): $(JUAFSOBJ)
89         -$(RM) -f $(LIBJUAFS)
90         $(AR) $(ARFLAGS) $(LIBJUAFS) $(JUAFSOBJ)
91
92 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
93         -$(RM) -f $(LIBAFSWEB)
94         ld -b $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
95
96 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) ${DES}/libdes.a
97         -$(RM) -f $(LIBAFSWEBKRB)
98         ld -b $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)