chiark / gitweb /
7ad6c547b810c7794e55f0e96ab63bff42b4b315
[elogind.git] / extras / run_directory / Makefile
1 # Makefile for udev extra invoked from the udev main Makefile
2 #
3 # Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
4 #
5 # Released under the GNU General Public License, version 2.
6 #
7 PROG = udev_run_devd udev_run_hotplugd
8 OBJS = run_directory.o
9 HEADERS =
10 GEN_HEADERS =
11 MAN_PAGES =
12
13 prefix =
14 etcdir =        ${prefix}/etc
15 sbindir =       ${prefix}/sbin
16 usrbindir =     ${prefix}/usr/bin
17 usrsbindir =    ${prefix}/usr/sbin
18 libudevdir =    ${prefix}/lib/udev
19 mandir =        ${prefix}/usr/share/man
20 configdir =     ${etcdir}/udev/
21
22 INSTALL = /usr/bin/install -c
23 INSTALL_PROGRAM = ${INSTALL}
24 INSTALL_DATA  = ${INSTALL} -m 644
25 INSTALL_SCRIPT = ${INSTALL_PROGRAM}
26
27 all: $(PROG) $(MAN_PAGES)
28 .PHONY: all
29 .DEFAULT: all
30
31 %.o: %.c $(GEN_HEADERS)
32         $(E) "  CC      " $@
33         $(Q) $(CC) -c $(CFLAGS) $< -o $@
34
35 $(PROG): %: $(HEADERS) %.o $(OBJS)
36         $(E) "  LD      " $@
37         $(Q) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIB_OBJS)
38
39 # man pages
40 %.8: %.xml
41         $(E) "  XMLTO   " $@
42         $(Q) xmlto man $?
43 .PRECIOUS: %.8
44
45 clean:
46         $(E) "  CLEAN   "
47         $(Q) rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
48 .PHONY: clean
49
50 install-bin: all
51         $(INSTALL_PROGRAM) -D udev_run_devd $(DESTDIR)$(libudevdir)/udev_run_devd
52         $(INSTALL_PROGRAM) -D udev_run_hotplugd $(DESTDIR)$(libudevdir)/udev_run_hotplugd
53 .PHONY: install-bin
54
55 uninstall-bin:
56         - rm $(DESTDIR)$(libudevdir)/udev_run_devd
57         - rm $(DESTDIR)$(libudevdir)/udev_run_hotplugd
58 .PHONY: uninstall-bin
59
60 install-man:
61         @echo "Please create a man page for this tool."
62 .PHONY: uninstall-man
63
64 uninstall-man:
65         @echo "Please create a man page for this tool."
66 .PHONY: uninstall-man
67
68 install-config:
69         @echo "no config file to install"
70 .PHONY: install-config