autoconf-likes-relative-paths-20060802
[openafs.git] / src / vfsck / Makefile.in
1 #
2 # Copyright (c) 1987 The Regents of the University of California.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms are permitted
6 # provided that the above copyright notice and this paragraph are
7 # duplicated in all such forms and that any documentation,
8 # advertising materials, and other materials related to such
9 # distribution and use acknowledge that the software was developed
10 # by the University of California, Berkeley.  The name of the
11 # University may not be used to endorse or promote products derived
12 # from this software without specific prior written permission.
13 # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 #
17 #       @(#)Makefile    5.12 (Berkeley) 6/26/89
18 #
19 srcdir=@srcdir@
20 include @TOP_OBJDIR@/src/config/Makefile.config
21 INSTALL = @INSTALL@
22 INSTALL_DATA = @INSTALL_DATA@
23 INSTALL_PROGRAM = @INSTALL_PROGRAM@
24 INSTALL_SCRIPT = @INSTALL_SCRIPT@
25
26 CFLAGS=${COMMON_CFLAGS} ${XCFLAGS} ${ARCHFLAGS} ${VFSCK_CFLAGS}
27
28 SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c \
29         pass4.c pass5.c setup.c utilities.c ufs_subr.c \
30         ufs_tables.c dirutils.c vprintf.c proplist.c
31
32 OBJS= dir.o inode.o main.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
33         pass5.o setup.o utilities.o dirutils.o vprintf.o proplist.o \
34         ufs_subr.o ufs_tables.o
35
36 all: vfsck
37
38 vfsck: ${OBJS} 
39         ${CC} -o vfsck ${CFLAGS} ${OBJS} ${NON_SHARED} ${XLIBS}
40
41 main.o: main.c AFS_component_version_number.c
42
43
44 #
45 # Installation targets
46 #
47 install: vfsck
48         ${INSTALL} -d ${DESTDIR}${afssrvlibexecdir}
49         ${INSTALL_PROGRAM} vfsck ${DESTDIR}${afssrvlibexecdir}/vfsck
50
51 dest: vfsck
52         ${INSTALL} -d ${DEST}/root.server/etc
53         ${INSTALL} -d ${DEST}/root.server/usr/afs/bin
54         ${INSTALL_PROGRAM} vfsck ${DEST}/root.server/etc/vfsck
55         ${INSTALL_PROGRAM} vfsck ${DEST}/root.server/usr/afs/bin/vfsck
56         case ${SYS_NAME} in \
57                 hp_ux10?) \
58                         ${CP} ${srcdir}/bcheckrc ${DEST}/root.server/etc ;; \
59                 hp_ux11?) \
60                         ${CP} ${srcdir}/bcheckrc-hp_ux110 ${DEST}/root.server/etc/bcheckrc ;; \
61         esac
62         case ${SYS_NAME} in \
63                 hp_ux10? | hp_ux11? ) \
64                         ${CP} ${srcdir}/mount ${DEST}/root.server/etc; \
65                         ${CP} ${srcdir}/umount ${DEST}/root.server/etc; \
66                         chmod 755 ${DEST}/root.server/etc/bcheckrc ${DEST}/root.server/etc/mount ${DEST}/root.server/etc/umount ;\
67                                 ;; \
68         esac
69
70 #
71 # Misc targets
72 #
73 clean:
74         $(RM) -f ${OBJS} vfsck core AFS_component_version_number.c
75
76 include ../config/Makefile.version