Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / libafs / MakefileProto.OBSD.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 # OpenBSD version by Jim Rees
9
10 srcdir=@srcdir@
11 include @TOP_OBJDIR@/src/config/Makefile.config
12 INSTALL = @INSTALL@
13 INSTALL_DATA = @INSTALL_DATA@
14 INSTALL_PROGRAM = @INSTALL_PROGRAM@
15 INSTALL_SCRIPT = @INSTALL_SCRIPT@
16
17 # System specific build commands and flags
18 KSRC = @BSD_KERNEL_PATH@
19 KFLAGS= -Wall -march=i486 -fno-builtin-printf -fno-builtin-log -fno-builtin-malloc -nostdinc
20 <i386_obsd33>
21 KFLAGS+= -fno-stack-protector
22 <all>
23 KDEFS= \
24 ${KFLAGS} \
25 -I/usr/include -I${KSRC}/sys \
26 -DLKM -DDIAGNOSTIC -DFIFO -DNFSCLIENT -DMFS -DFFS -D_KERNEL -DI586_CPU \
27 -DI686_CPU
28 DBUG= -O2
29 DEFINES= -DAFSDEBUG -DKERNEL -DAFS -DVICE -DNFS -DUFS -DINET -DQUOTA -DGETMOUNT
30 OPTF= ${OPT}
31 OPTF2= ${OPT2}
32 CFLAGS= ${FSINCLUDES} ${DEFINES} ${KDEFS} ${KOPTS} ${DBUG}
33
34 # Name of directory to hold object files and libraries.
35 KOBJ = MODLOAD
36
37 # OS specific object files:
38 AFS_OS_OBJS = \
39 osi_crypto.o \
40 osi_gcpags.o \
41 osi_groups.o \
42 osi_file.o \
43 osi_misc.o \
44 osi_sleep.o \
45 osi_vcache.o \
46 osi_vm.o \
47 osi_vnodeops.o
48
49 #AFS_OS_NFSOBJS = osi_vfsops_nfs.o
50
51 AFS_OS_NONFSOBJS = osi_vfsops.o
52
53 # This tells Makefile.common to use its single directory build target.
54 COMPDIRS = single_compdir
55 INSTDIRS = single_instdir
56 DESTDIRS = single_destdir
57
58 TOP_SRCDIR = ../..
59
60 include Makefile.common
61
62 setup:
63 -mkdir $(KOBJ)
64 -$(RM) -f $(KOBJ)/Makefile $(KOBJ)/Makefile.common $(KOBJ)/config
65 ln -fs ../Makefile $(KOBJ)/Makefile
66 ln -fs ../Makefile.common $(KOBJ)/Makefile.common
67 -$(RM) -f h lib
68 -ln -fs ${KSRC}/sys h
69 -ln -fs ${KSRC}/lib .
70 -touch $(KOBJ)/sec_net.h
71
72
73 # Below this line are targets when in the COMMON directory:
74 LIBAFS = libafs.nfs.o
75 LIBAFSNONFS = libafs.o
76
77 INST_LIBAFS = ${DESTDIR}${afskerneldir}/${LIBAFS}
78 INST_LIBAFSNONFS = ${DESTDIR}${afskerneldir}/${LIBAFSNONFS}
79
80 DEST_LIBAFS = ${DEST}/root.client/bin/${LIBAFS}
81 DEST_LIBAFSNONFS = ${DEST}/root.client/bin/${LIBAFSNONFS}
82
83
84 libafs: $(LIBAFSNONFS)
85 ls -l libafs.o
86
87 install_libafs: $(LIBAFSNONFS)
88 ${INSTALL} -d ${DESTDIR}${afskerneldir}
89 ${INSTALL} -m 644 $(LIBAFSNONFS) $(INST_LIBAFSNONFS)
90
91 dest_libafs: $(LIBAFSNONFS)
92 ${INSTALL} -d ${DEST}/root.client/bin
93 $(INSTALL) -m 644 $(LIBAFSNONFS) $(DEST_LIBAFSNONFS)
94
95 ${LIBAFS}: $(AFSAOBJS) $(AFSNFSOBJS)
96 $(LD) -r -o ${LIBAFS} ${AFSAOBJS} ${AFSNFSOBJS}
97
98 ${LIBAFSNONFS}: $(AFSAOBJS) $(AFSNONFSOBJS)
99 $(LD) -r -o ${LIBAFSNONFS} ${AFSAOBJS} ${AFSNONFSOBJS}