libjuafs-target-20020611
[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 srcdir=@srcdir@
9 include @TOP_OBJDIR@/src/config/Makefile.config
10
11
12
13 # System specific build commands and flags
14 DEFINES=-DKERNEL -DUKERNEL -D_NO_PROTO -DOSF
15 KOPTS=
16 DBUG=
17 OPTF=-O
18 CFLAGS=-I. -I.. -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBUG} -pthread
19 WEBOPTS = -I../nsapi -DNETSCAPE_NSAPI -DNET_SSL -DXP_UNIX -DMCC_HTTPD
20
21 TEST_CFLAGS=-pthread -D_NO_PROTO -D_REENTRANT -DAFS_PTHREAD_ENV -Dosf -DAFS_OSF_ENV -DOSF
22 TEST_LDFLAGS=-pthread
23 TEST_LIBS=-lm
24
25 LIBUAFS = libuafs.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 UAFS:
49         mkdir -p $@
50
51 setup_nsafs: AFSWEB setup_common
52         -$(RM) -f AFSWEB/Makefile AFSWEB/Makefile.common
53         ln -s ../Makefile AFSWEB/Makefile
54         ln -s ../Makefile.common AFSWEB/Makefile.common
55
56 AFSWEB: 
57         mkdir -p $@
58
59 UAFS/$(LIBUAFS): setup_uafs
60         cd UAFS; \
61         $(MAKE) $(LIBUAFS)
62
63 AFSWEB/$(LIBAFSWEB): setup_nsafs
64         cd AFSWEB; \
65         $(MAKE) $(LIBAFSWEB)
66
67 AFSWEB/$(LIBAFSWEBKRB): setup_nsafs
68         cd AFSWEB; \
69         $(MAKE) $(LIBAFSWEBKRB)
70
71 # Below this line are targets when in the COMMON directory:
72
73 $(LIBUAFS): $(UAFSOBJ)
74         -$(RM) -f $(LIBUAFS)
75         $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
76         ranlib $(LIBUAFS)
77
78 $(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
79         -$(RM) -f $(LIBAFSWEB)
80         ld -all -shared -expect_unresolved "*" $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
81
82 $(LIBAFSWEBKRB): $(AFSWEBOBJKRB) ${DES}/libdes.a
83         -$(RM) -f $(LIBAFSWEBKRB)
84         ld -all -shared -expect_unresolved "*" $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)