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