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