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