blob: f0c15b8fecd4a50090519bccbe3792b8ca298b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Makefile for udev_volume_id
#
# Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
PROG = udev_volume_id
all: $(PROG)
prefix =
exec_prefix = ${prefix}
etcdir = ${prefix}/etc
sbindir = ${exec_prefix}/sbin
usrbindir = ${exec_prefix}/usr/bin
usrsbindir = ${exec_prefix}/usr/sbin
mandir = ${prefix}/usr/share/man
devddir = ${etcdir}/dev.d/default
configdir = ${etcdir}/udev/
initdir = ${etcdir}/init.d/
srcdir = .
INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
override CFLAGS+=-Wall -fno-builtin -Wchar-subscripts \
-Wpointer-arith -Wcast-align -Wsign-compare
override CFLAGS+=-D_FILE_OFFSET_BITS=64
VOLUME_ID_OBJS= \
volume_id/ext/ext.o \
volume_id/fat/fat.o \
volume_id/hfs/hfs.o \
volume_id/highpoint/highpoint.o \
volume_id/iso9660/iso9660.o \
volume_id/jfs/jfs.o \
volume_id/linux_raid/linux_raid.o \
volume_id/linux_swap/linux_swap.o \
volume_id/lvm/lvm.o \
volume_id/mac/mac.o \
volume_id/msdos/msdos.o \
volume_id/ntfs/ntfs.o \
volume_id/reiserfs/reiserfs.o \
volume_id/udf/udf.o \
volume_id/ufs/ufs.o \
volume_id/xfs/xfs.o \
volume_id/dasd/dasd.o \
volume_id/volume_id.o \
volume_id/util.o
VOLUME_ID_HEADERS= \
volume_id/ext/ext.h \
volume_id/fat/fat.h \
volume_id/hfs/hfs.h \
volume_id/highpoint/highpoint.h \
volume_id/iso9660/iso9660.h \
volume_id/jfs/jfs.h \
volume_id/linux_raid/linux_raid.h \
volume_id/linux_swap/linux_swap.h \
volume_id/lvm/lvm.h \
volume_id/mac/mac.h \
volume_id/msdos/msdos.h \
volume_id/ntfs/ntfs.h \
volume_id/reiserfs/reiserfs.h \
volume_id/udf/udf.h \
volume_id/ufs/ufs.h \
volume_id/xfs/xfs.h \
volume_id/dasd/dasd.h \
volume_id/volume_id.h \
volume_id/util.h
OBJS = udev_volume_id.o $(VOLUME_ID_OBJS) $(SYSFS)
HEADERS = $(VOLUME_ID_HEADERS)
$(OBJS): $(HEADERS)
.c.o:
$(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
$(PROG): $(OBJS) $(HEADERS)
$(QUIET) $(LD) $(LDFLAGS) -o $(PROG) $(CRT0) $(OBJS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
clean:
rm -f $(PROG) $(OBJS)
spotless: clean
install: all
$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
uninstall:
- rm $(DESTDIR)$(sbindir)/$(PROG)
|