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