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