167c5cb9a55663e1a9f19001b4b01ad06a3c8eda
[openafs.git] / src / procmgmt / 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 include @TOP_OBJDIR@/src/config/Makefile.lwp
11
12
13 all: ${TOP_LIBDIR}/libprocmgmt.a ${TOP_INCDIR}/afs/procmgmt.h
14
15 buildtools: ${TOP_INCDIR}/afs/procmgmt.h
16
17 ${TOP_LIBDIR}/libprocmgmt.a: libprocmgmt.a
18         ${INSTALL_DATA} $? $@
19
20 ${TOP_INCDIR}/afs/procmgmt.h: ${srcdir}/procmgmt.h
21         ${INSTALL_DATA} $? $@
22
23 #
24 # Build targets
25 #
26 libprocmgmt.a: procmgmt_unix.o AFS_component_version_number.o
27         $(RM) -f $@
28         $(AR) crv $@ procmgmt_unix.o AFS_component_version_number.o
29         $(RANLIB) $@
30
31 procmgmt_unix.o: ${srcdir}/procmgmt_unix.c ${srcdir}/procmgmt.h
32
33 #
34 # Install targets
35 #
36 install: libprocmgmt.a
37         ${INSTALL} -d ${DESTDIR}${libdir}/afs
38         ${INSTALL} -d ${DESTDIR}${includedir}/afs
39         ${INSTALL_DATA} libprocmgmt.a ${DESTDIR}${libdir}/afs/libprocmgmt.a
40         ${INSTALL_DATA} ${srcdir}/procmgmt.h \
41                 ${DESTDIR}${includedir}/afs/procmgmt.h
42
43 dest: libprocmgmt.a
44         ${INSTALL} -d ${DEST}/lib/afs
45         ${INSTALL} -d ${DEST}/include/afs
46         ${INSTALL_DATA} libprocmgmt.a ${DEST}/lib/afs/libprocmgmt.a
47         ${INSTALL_DATA} ${srcdir}/procmgmt.h \
48                 ${DEST}/include/afs/procmgmt.h
49
50 #
51 # Misc targets
52 #
53 clean:
54         $(RM) -f *.a *.o core AFS_component_version_number.c
55
56 include ../config/Makefile.version