death-to-pinstall-20060801
[openafs.git] / src / null / Makefile.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 all: ${TOP_LIBDIR}/libnull.a
12
13 ${TOP_LIBDIR}/libnull.a: libnull.a
14         ${INSTALL} $? $@
15
16 install: libnull.a
17         ${INSTALL} -d ${DESTDIR}${libdir}/afs
18         ${INSTALL_DATA} libnull.a ${DESTDIR}${libdir}/afs/libnull.a
19
20 dest: libnull.a
21         ${INSTALL} -d ${DEST}/lib/afs
22         ${INSTALL_DATA} libnull.a ${DEST}/lib/afs/libnull.a
23
24 null.o: null.c AFS_component_version_number.c
25
26 libnull.a: null.o 
27         -$(RM) -f $@
28         $(AR) crv $@ null.o
29         $(RANLIB) $@
30
31 clean:
32         $(RM) -f *.o *.a AFS_component_version_number.c
33
34 include ../config/Makefile.version