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