libuafs-build-juafs-everywhere-20020702
[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 LIBJUAFS = libjuafs.a
26 LIBAFSWEB = nsafs.so
27 LIBAFSWEBKRB = nsafs.krb.so
28
29 include Makefile.common
30
31 setup_common:
32         -$(RM) -f  h net netinet rpc ufs nfs  machine sys inet nsapi
33         -ln -s /usr/include/sys h
34         -ln -s /usr/include/net net
35         -ln -s /usr/include/netinet netinet
36         -ln -s /usr/include/rpc rpc
37         -ln -s /usr/include/sys sys
38         -ln -s /usr/include/nfs nfs
39         -ln -s /usr/include/inet inet
40         -ln -s /usr/include/ufs ufs
41         -ln -s $(NS_INCL) nsapi
42
43 setup_uafs: UAFS setup_common
44         -$(RM) -f UAFS/Makefile UAFS/Makefile.common
45         ln -s ../Makefile UAFS/Makefile
46         ln -s ../Makefile.common UAFS/Makefile.common
47
48 setup_juafs: JUAFS setup_common
49         -$(RM) -f JUAFS/Makefile JUAFS/Makefile.common
50         ln -s ../Makefile JUAFS/Makefile
51         ln -s ../Makefile.common JUAFS/Makefile.common
52
53 UAFS:
54         mkdir -p $@
55
56 JUAFS:
57         mkdir -p $@
58
59 setup_nsafs: AFSWEB setup_common
60         -$(RM) -f AFSWEB/Makefile AFSWEB/Makefile.common
61         ln -s ../Makefile AFSWEB/Makefile
62         ln -s ../Makefile.common AFSWEB/Makefile.common
63
64 AFSWEB:
65         mkdir -p $@
66
67 UAFS/$(LIBUAFS): setup_uafs
68         cd UAFS; \
69         $(MAKE) $(LIBUAFS) DESTDIR=${DESTDIR} LIBJUAFS_FLAGS=; \
70         ranlib $(LIBUAFS)
71
72 JUAFS/$(LIBJUAFS): setup_juafs
73         cd JUAFS; \
74         $(MAKE) $(LIBJUAFS) DESTDIR=${DESTDIR} LIBJUAFS_FLAGS=-DAFS_WEB_ENHANCEMENTS; \
75         ranlib $(LIBJUAFS)
76
77 AFSWEB/$(LIBAFSWEB): setup_nsafs
78         cd AFSWEB; \
79         $(MAKE) $(LIBAFSWEB) DESTDIR=${DESTDIR}
80
81 AFSWEB/$(LIBAFSWEBKRB): setup_nsafs
82         cd AFSWEB; \
83         $(MAKE) $(LIBAFSWEBKRB) DESTDIR=${DESTDIR}
84
85 # Below this line are targets when in the COMMON directory:
86
87 $(LIBUAFS): $(UAFSOBJ)
88         -$(RM) -f $(LIBUAFS)
89         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
90
91 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
92         -$(RM) -f $(LIBAFSWEB)
93         ld -b $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
94
95 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) ${DES}/libdes.a
96         -$(RM) -f $(LIBAFSWEBKRB)
97         ld -b $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)