039fee9e66214ea24e277b9b38c8c1a93c93426d
[openafs.git] / src / libuafs / MakefileProto.IRIX
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 CC = cc
17 DEFINES=-D_SGI_MP_SOURCE -DAFSDEBUG -DKERNEL -DUKERNEL -DAFS -DVICE
18 CFLAGS=-I. -I.. -I${TOP_SRCDIR}/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBUG}
19 OPTF=-O
20 WEBOPTS = -I../nsapi -DNETSCAPE_NSAPI -DNET_SSL -DXP_UNIX -DMCC_HTTPD
21
22 TEST_CFLAGS=-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV -Dirix -DAFS_SGI_ENV
23 TEST_LDFLAGS=-ignore_minor
24 TEST_LIBS=-lpthread -lm
25
26 LIBUAFS = libuafs.a
27 LIBAFSWEB = nsafs.so
28 LIBAFSWEBKRB = nsafs.krb.so
29
30 include Makefile.common
31
32 setup_common:
33         -rm -f  h net netinet rpc ufs nfs  machine sys inet nsapi
34         -ln -s /usr/include/sys h
35         -ln -s /usr/include/net net
36         -ln -s /usr/include/netinet netinet
37         -ln -s /usr/include/rpc rpc
38         -ln -s /usr/include/sys sys
39         -ln -s /usr/include/nfs nfs
40         -ln -s /usr/include/inet inet
41         -ln -s /usr/include/ufs ufs
42         -ln -s $(NS_INCL) nsapi
43
44 setup_uafs: setup_common
45         set UAFS; $(MKDIR_IF_NEEDED)
46         -rm -f UAFS/Makefile UAFS/Makefile.common
47         ln -s ../Makefile UAFS/Makefile
48         ln -s ../Makefile.common UAFS/Makefile.common
49
50 setup_nsafs: setup_common
51         set AFSWEB; $(MKDIR_IF_NEEDED)
52         -rm -f AFSWEB/Makefile AFSWEB/Makefile.common
53         ln -s ../Makefile AFSWEB/Makefile
54         ln -s ../Makefile.common AFSWEB/Makefile.common
55
56 UAFS/$(LIBUAFS): setup_uafs
57         cd UAFS; \
58         $(MAKE) $(LIBUAFS)
59
60 AFSWEB/$(LIBAFSWEB): setup_nsafs
61         cd AFSWEB; \
62         $(MAKE) $(LIBAFSWEB)
63
64 AFSWEB/$(LIBAFSWEB): setup_nsafs
65         cd AFSWEB; \
66         $(MAKE) $(LIBAFSWEBKRB)
67
68 # Below this line are targets when in the COMMON directory:
69
70 $(LIBUAFS): $(UAFSOBJ)
71         -rm -f $(LIBUAFS)
72         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
73
74 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
75         -rm -f $(LIBAFSWEB)
76         ld -shared $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
77
78 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) ${DES}/libdes.a
79         -rm -f $(LIBAFSWEBKRB)
80         ld -shared $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)