0b59c2b85bb240f56860773138d05aa71d698255
[openafs.git] / src / libuafs / MakefileProto.SOLARIS
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 include ../config/Makefile.${SYS_NAME}
12
13 MKDIR_IF_NEEDED=[ -d $$1 ] || mkdir -p $$1
14
15 # System specific build commands and flags
16 DEFINES= -D_REENTRANT -DAFSDEBUG -DKERNEL -DUKERNEL -DAFS -DVICE
17 CFLAGS=-I. -I.. -I${TOP_SRCDIR}/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBUG}
18 OPTF=-O
19 WEBOPTS = -KPIC -I../nsapi -DNETSCAPE_NSAPI -DSOLARIS -DNET_SSL -DXP_UNIX -DMCC_HTTPD
20
21 TEST_CFLAGS=-mt -DAFS_PTHREAD_ENV -Dsolaris -DAFS_SUN5_ENV
22 TEST_LDFLAGS=
23 TEST_LIBS=-lsocket -lnsl -lthread -lm -ldl
24
25 LIBUAFS = libuafs.a
26 LIBAFSWEB = nsafs.so
27 LIBAFSWEBKRB = nsafs.krb.so
28
29 include Makefile.common
30
31 setup_common:
32         -rm -f  h net netinet rpc ufs nfs  machine sys inet nsapi
33         -ln -s /usr/include/sys h
34         -ln -s /usr/include/net net
35         -ln -s /usr/include/netinet netinet
36         -ln -s /usr/include/rpc rpc
37         -ln -s /usr/include/sys sys
38         -ln -s /usr/include/nfs nfs
39         -ln -s /usr/include/inet inet
40         -ln -s /usr/include/ufs ufs
41         -ln -s $(NS_INCL) nsapi
42
43 setup_uafs: setup_common
44         set UAFS; $(MKDIR_IF_NEEDED)
45         -rm -f UAFS/Makefile UAFS/Makefile.common
46         ln -s ../Makefile UAFS/Makefile
47         ln -s ../Makefile.common UAFS/Makefile.common
48
49 setup_nsafs: setup_common
50         set AFSWEB; $(MKDIR_IF_NEEDED)
51         -rm -f AFSWEB/Makefile AFSWEB/Makefile.common
52         ln -s ../Makefile AFSWEB/Makefile
53         ln -s ../Makefile.common AFSWEB/Makefile.common
54
55 UAFS/$(LIBUAFS): setup_uafs
56         cd UAFS; \
57         $(MAKE) $(LIBUAFS)
58
59 AFSWEB/$(LIBAFSWEB): setup_nsafs
60         cd AFSWEB; \
61         $(MAKE) $(LIBAFSWEB)
62
63 AFSWEB/$(LIBAFSWEBKRB): setup_nsafs
64         cd AFSWEB; \
65         $(MAKE) $(LIBAFSWEBKRB)
66
67 # Below this line are targets when in the COMMON directory:
68
69 $(LIBUAFS): $(UAFSOBJ)
70         -rm -f $(LIBUAFS)
71         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
72
73 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
74         -rm -f $(LIBAFSWEB)
75         ${LD} -G -M../mapfile -o $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
76
77
78 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) $(DES)/libdes.a
79         -rm -f $(LIBAFSWEBKRB)
80         ${LD} -G -M../mapfile -o $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)