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