OpenBSD: Eliminate complaint about built-in malloc.
[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_gcpags.o \
40         osi_groups.o \
41         osi_file.o \
42         osi_misc.o \
43         osi_sleep.o \
44         osi_vcache.o \
45         osi_vm.o \
46         osi_vnodeops.o
47
48 #AFS_OS_NFSOBJS = osi_vfsops_nfs.o
49
50 AFS_OS_NONFSOBJS = osi_vfsops.o
51
52 # This tells Makefile.common to use its single directory build target.
53 COMPDIRS = single_compdir
54 INSTDIRS = single_instdir
55 DESTDIRS = single_destdir
56
57 TOP_SRCDIR = ../..
58
59 include Makefile.common
60
61 setup:
62         -mkdir $(KOBJ)
63         -$(RM) -f  $(KOBJ)/Makefile $(KOBJ)/Makefile.common $(KOBJ)/config
64         ln -fs ../Makefile $(KOBJ)/Makefile
65         ln -fs ../Makefile.common $(KOBJ)/Makefile.common
66         -$(RM) -f  h lib
67         -ln -fs ${KSRC}/sys h
68         -ln -fs ${KSRC}/lib .
69         -touch $(KOBJ)/sec_net.h
70
71
72 # Below this line are targets when in the COMMON directory:
73 LIBAFS = libafs.nfs.o
74 LIBAFSNONFS = libafs.o
75
76 INST_LIBAFS = ${DESTDIR}${afskerneldir}/${LIBAFS}
77 INST_LIBAFSNONFS = ${DESTDIR}${afskerneldir}/${LIBAFSNONFS}
78
79 DEST_LIBAFS = ${DEST}/root.client/bin/${LIBAFS}
80 DEST_LIBAFSNONFS = ${DEST}/root.client/bin/${LIBAFSNONFS}
81
82
83 libafs: $(LIBAFSNONFS)
84         ls -l libafs.o
85
86 install_libafs: $(LIBAFSNONFS)
87         ${INSTALL} -d ${DESTDIR}${afskerneldir}
88         ${INSTALL} -m 644 $(LIBAFSNONFS) $(INST_LIBAFSNONFS)
89
90 dest_libafs: $(LIBAFSNONFS)
91         ${INSTALL} -d ${DEST}/root.client/bin
92         $(INSTALL) -m 644 $(LIBAFSNONFS) $(DEST_LIBAFSNONFS)
93
94 ${LIBAFS}: $(AFSAOBJS) $(AFSNFSOBJS)
95         $(LD) -r -o ${LIBAFS} ${AFSAOBJS} ${AFSNFSOBJS}
96
97 ${LIBAFSNONFS}:  $(AFSAOBJS) $(AFSNONFSOBJS)
98         $(LD) -r -o ${LIBAFSNONFS} ${AFSAOBJS} ${AFSNONFSOBJS}