make-install-support-for-transarc-and-prefix-style-universes-20010907
[openafs.git] / src / libuafs / 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 # MakefileProto for Solaris systems
9 #
10
11 DEST=@DEST@
12 TOP_SRCDIR=@TOP_SRCDIR@
13 TOP_INCDIR=@TOP_INCDIR@
14 TOP_LIBDIR=@TOP_LIBDIR@
15 prefix=@prefix@
16 exec_prefix=@exec_prefix@
17 bindir=@bindir@
18 sbindir=@sbindir@
19 libexecdir=@libexecdir@
20 libdir=@libdir@
21 includedir=@includedir@
22 mandir=@mandir@
23 afssrvbindir=@afssrvbindir@
24 afssrvsbindir=@afssrvsbindir@
25 afssrvlibexecdir=@afssrvlibexecdir@
26 SYS_NAME=@AFS_SYSNAME@
27
28 include ../config/Makefile.${SYS_NAME}
29
30 # System specific build commands and flags
31 DEFINES= -D_REENTRANT -DAFSDEBUG -DKERNEL -DUKERNEL -DAFS -DVICE
32 CFLAGS=-I. -I.. -I${TOP_SRCDIR}/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBUG}
33 OPTF=-O
34 WEBOPTS = -KPIC -I../nsapi -DNETSCAPE_NSAPI -DSOLARIS -DNET_SSL -DXP_UNIX -DMCC_HTTPD
35
36 TEST_CFLAGS=-mt -DAFS_PTHREAD_ENV -Dsolaris -DAFS_SUN5_ENV
37 TEST_LDFLAGS=
38 TEST_LIBS=-lsocket -lnsl -lthread -lm -ldl
39
40 LIBUAFS = libuafs.a
41 LIBAFSWEB = nsafs.so
42 LIBAFSWEBKRB = nsafs.krb.so
43
44 include Makefile.common
45
46 setup_common:
47         -$(RM) -f  h net netinet rpc ufs nfs  machine sys inet nsapi
48         -ln -s /usr/include/sys h
49         -ln -s /usr/include/net net
50         -ln -s /usr/include/netinet netinet
51         -ln -s /usr/include/rpc rpc
52         -ln -s /usr/include/sys sys
53         -ln -s /usr/include/nfs nfs
54         -ln -s /usr/include/inet inet
55         -ln -s /usr/include/ufs ufs
56         -ln -s $(NS_INCL) nsapi
57
58 setup_uafs: UAFS setup_common
59         -$(RM) -f UAFS/Makefile UAFS/Makefile.common
60         ln -s ../Makefile UAFS/Makefile
61         ln -s ../Makefile.common UAFS/Makefile.common
62
63 UAFS:
64         mkdir -p $@
65
66 setup_nsafs: AFSWEB setup_common
67         -$(RM) -f AFSWEB/Makefile AFSWEB/Makefile.common
68         ln -s ../Makefile AFSWEB/Makefile
69         ln -s ../Makefile.common AFSWEB/Makefile.common
70
71 AFSWEB:
72         mkdir -p $@
73
74 UAFS/$(LIBUAFS): setup_uafs
75         cd UAFS; \
76         $(MAKE) $(LIBUAFS)
77
78 AFSWEB/$(LIBAFSWEB): setup_nsafs
79         cd AFSWEB; \
80         $(MAKE) $(LIBAFSWEB)
81
82 AFSWEB/$(LIBAFSWEBKRB): setup_nsafs
83         cd AFSWEB; \
84         $(MAKE) $(LIBAFSWEBKRB)
85
86 # Below this line are targets when in the COMMON directory:
87
88 $(LIBUAFS): $(UAFSOBJ)
89         -$(RM) -f $(LIBUAFS)
90         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
91
92 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
93         -$(RM) -f $(LIBAFSWEB)
94         ${LD} -G -M../mapfile -o $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
95
96
97 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) $(DES)/libdes.a
98         -$(RM) -f $(LIBAFSWEBKRB)
99         ${LD} -G -M../mapfile -o $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)