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