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