chiark / gitweb /
0b52326a9a5b77472e3763588a9035248e5cedc3
[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 ifneq ($(strip $(STRIPCMD)),)
39         $(E) "  STRIP   " $@
40         $(Q) $(STRIPCMD) $@
41 endif
42
43 # man pages
44 %.8: %.xml
45         $(E) "  XMLTO   " $@
46         $(Q) xmlto man $?
47 .PRECIOUS: %.8
48
49 clean:
50         $(E) "  CLEAN   "
51         $(Q) rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
52 .PHONY: clean
53
54 install-bin: all
55         $(INSTALL_PROGRAM) -D udev_run_devd $(DESTDIR)$(libudevdir)/udev_run_devd
56         $(INSTALL_PROGRAM) -D udev_run_hotplugd $(DESTDIR)$(libudevdir)/udev_run_hotplugd
57 .PHONY: install-bin
58
59 uninstall-bin:
60         - rm $(DESTDIR)$(libudevdir)/udev_run_devd
61         - rm $(DESTDIR)$(libudevdir)/udev_run_hotplugd
62 .PHONY: uninstall-bin
63
64 install-man:
65         @echo "Please create a man page for this tool."
66 .PHONY: uninstall-man
67
68 uninstall-man:
69         @echo "Please create a man page for this tool."
70 .PHONY: uninstall-man
71
72 install-config:
73         @echo "no config file to install"
74 .PHONY: install-config