initial-objdir-support-20011017
[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 # 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 CC = cc
35 DEFINES=-D_SGI_MP_SOURCE -DKERNEL -DUKERNEL
36 CFLAGS=-I. -I.. -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBUG}
37 OPTF=-O
38 WEBOPTS = -I../nsapi -DNETSCAPE_NSAPI -DNET_SSL -DXP_UNIX -DMCC_HTTPD
39
40 TEST_CFLAGS=-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV -Dirix -DAFS_SGI_ENV
41 TEST_LDFLAGS=-ignore_minor
42 TEST_LIBS=-lpthread -lm
43
44 LIBUAFS = libuafs.a
45 LIBAFSWEB = nsafs.so
46 LIBAFSWEBKRB = nsafs.krb.so
47
48 include Makefile.common
49
50 setup_common:
51         -$(RM) -f  h net netinet rpc ufs nfs  machine sys inet nsapi
52         -ln -s /usr/include/sys h
53         -ln -s /usr/include/net net
54         -ln -s /usr/include/netinet netinet
55         -ln -s /usr/include/rpc rpc
56         -ln -s /usr/include/sys sys
57         -ln -s /usr/include/nfs nfs
58         -ln -s /usr/include/inet inet
59         -ln -s /usr/include/ufs ufs
60         -ln -s $(NS_INCL) nsapi
61
62 setup_uafs: UAFS setup_common
63         -$(RM) -f UAFS/Makefile UAFS/Makefile.common
64         ln -s ../Makefile UAFS/Makefile
65         ln -s ../Makefile.common UAFS/Makefile.common
66
67 UAFS:
68         mkdir -p $@
69
70 setup_nsafs: AFSWEB setup_common
71         -$(RM) -f AFSWEB/Makefile AFSWEB/Makefile.common
72         ln -s ../Makefile AFSWEB/Makefile
73         ln -s ../Makefile.common AFSWEB/Makefile.common
74
75 AFSWEB:
76         mkdir -p $@
77
78 UAFS/$(LIBUAFS): setup_uafs
79         cd UAFS; \
80         $(MAKE) $(LIBUAFS)
81
82 AFSWEB/$(LIBAFSWEB): setup_nsafs
83         cd AFSWEB; \
84         $(MAKE) $(LIBAFSWEB)
85
86 AFSWEB/$(LIBAFSWEB): setup_nsafs
87         cd AFSWEB; \
88         $(MAKE) $(LIBAFSWEBKRB)
89
90 # Below this line are targets when in the COMMON directory:
91
92 $(LIBUAFS): $(UAFSOBJ)
93         -$(RM) -f $(LIBUAFS)
94         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
95
96 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
97         -$(RM) -f $(LIBAFSWEB)
98         ld -shared $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
99
100 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) ${DES}/libdes.a
101         -$(RM) -f $(LIBAFSWEBKRB)
102         ld -shared $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)