darwin-x86-and-leopard-20060309
[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
22 CFLAGS=${COMMON_CFLAGS} ${XCFLAGS} ${ARCHFLAGS} ${VFSCK_CFLAGS}
23
24 SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c \
25         pass4.c pass5.c setup.c utilities.c ufs_subr.c \
26         ufs_tables.c dirutils.c vprintf.c proplist.c
27
28 OBJS= dir.o inode.o main.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
29         pass5.o setup.o utilities.o dirutils.o vprintf.o proplist.o \
30         ufs_subr.o ufs_tables.o
31
32 all: vfsck
33
34 vfsck: ${OBJS} 
35         ${CC} -o vfsck ${CFLAGS} ${OBJS} ${NON_SHARED} ${XLIBS}
36
37 main.o: main.c AFS_component_version_number.c
38
39
40 #
41 # Installation targets
42 #
43 install: ${DESTDIR}${afssrvlibexecdir}/vfsck
44
45 ${DEST}/root.server/etc/vfsck: vfsck
46         ${INSTALL} $? $@
47
48 ${DEST}/root.server/usr/afs/bin/vfsck: vfsck
49         ${INSTALL} $? $@
50
51 ${DESTDIR}${afssrvlibexecdir}/vfsck: vfsck
52         ${INSTALL} $? $@
53
54 dest: ${DEST}/root.server/etc/vfsck ${DEST}/root.server/usr/afs/bin/vfsck
55         case ${SYS_NAME} in \
56                 hp_ux10?) \
57                         ${CP} ${srcdir}/bcheckrc ${DEST}/root.server/etc ;; \
58                 hp_ux11?) \
59                         ${CP} ${srcdir}/bcheckrc-hp_ux110 ${DEST}/root.server/etc/bcheckrc ;; \
60         esac
61         case ${SYS_NAME} in \
62                 hp_ux10? | hp_ux11? ) \
63                         ${CP} ${srcdir}/mount ${DEST}/root.server/etc; \
64                         ${CP} ${srcdir}/umount ${DEST}/root.server/etc; \
65                         chmod 755 ${DEST}/root.server/etc/bcheckrc ${DEST}/root.server/etc/mount ${DEST}/root.server/etc/umount ;\
66                                 ;; \
67         esac
68
69 #
70 # Misc targets
71 #
72 clean:
73         $(RM) -f ${OBJS} vfsck core AFS_component_version_number.c
74
75 include ../config/Makefile.version